Skip to content

Commit

Permalink
chore(deps-dev): bump jest-extended from 3.2.4 to 4.0.2 (morganstanle…
Browse files Browse the repository at this point in the history
…y#381)

* chore(deps-dev): bump jest-extended from 3.2.4 to 4.0.2

Bumps [jest-extended](https://github.com/jest-community/jest-extended) from 3.2.4 to 4.0.2.
- [Release notes](https://github.com/jest-community/jest-extended/releases)
- [Changelog](https://github.com/jest-community/jest-extended/blob/main/CHANGELOG.md)
- [Commits](jest-community/jest-extended@v3.2.4...v4.0.2)

---
updated-dependencies:
- dependency-name: jest-extended
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore(message-router/js): fix tests

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: kruplm <[email protected]>
  • Loading branch information
dependabot[bot] and kruplm authored Oct 18, 2023
1 parent b090f51 commit caa3565
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/messaging/js/composeui-messaging-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"expect": "^29.4.1",
"glob": "^10.3.10",
"jest": "^29.4.2",
"jest-extended": "^3.2.3",
"jest-extended": "^4.0.2",
"rimraf": "^4.4.0",
"rollup": "^3.17.2",
"rollup-plugin-dts": "^5.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ describe("MessageRouterClient", () => {
connection.raiseClose();
await new Promise(process.nextTick);

expect(subscriber.error).toHaveBeenCalledOnceWith(expect.any(Error));
expect(subscriber.error).toHaveBeenCalledExactlyOnceWith(expect.any(Error));
});

it("fails pending requests", async () => {
Expand Down Expand Up @@ -657,7 +657,7 @@ describe("MessageRouterClient", () => {
connection.raiseError(err);
await new Promise(process.nextTick);

expect(subscriber.error).toHaveBeenCalledOnceWith(err);
expect(subscriber.error).toHaveBeenCalledExactlyOnceWith(err);
});

it("fails pending requests", async () => {
Expand Down

0 comments on commit caa3565

Please sign in to comment.