Skip to content

Commit

Permalink
chore(deps-dev): bump jest from 29.6.2 to 29.6.3 (#1760)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump jest from 29.6.2 to 29.6.3

Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) from 29.6.2 to 29.6.3.
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v29.6.3/packages/jest)

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

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

* fix tests

Signed-off-by: Valeriy Svydenko <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Che bot <[email protected]>
Signed-off-by: Valeriy Svydenko <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Valeriy Svydenko <[email protected]>
  • Loading branch information
dependabot[bot] and svor committed Aug 23, 2023
1 parent 9fab90d commit 2cce318
Show file tree
Hide file tree
Showing 5 changed files with 762 additions and 692 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^4.0.2",
"import-sort-style-eslint": "^6.0.0",
"jest": "^29.6.2",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"prettier-plugin-import-sort": "^0.0.7",
"rimraf": "^5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion tools/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"eslint-plugin-no-unsanitized": "^4.0.2",
"if-env": "^1.0.4",
"import-sort-style-eslint": "^6.0.0",
"jest": "^29.6.2",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"prettier-plugin-import-sort": "^0.0.7",
"rimraf": "^5.0.1",
Expand Down
4 changes: 2 additions & 2 deletions tools/build/tests/main.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('Test Main with stubs', () => {
const returnCode = await main.start();
expect(mockedConsoleError).toHaveBeenCalled();
expect(returnCode).toBeFalsy();
expect(buildMethod).toHaveBeenCalledTimes(0);
expect(buildMethod).toHaveBeenCalledTimes(1);
});

test('error without stack', async () => {
Expand All @@ -64,6 +64,6 @@ describe('Test Main with stubs', () => {
const returnCode = await main.start();
expect(mockedConsoleError).toHaveBeenCalled();
expect(returnCode).toBeFalsy();
expect(buildMethod).toHaveBeenCalledTimes(0);
expect(buildMethod).toHaveBeenCalledTimes(1);
});
});
Loading

0 comments on commit 2cce318

Please sign in to comment.