Skip to content

Commit

Permalink
chore(deps-dev): bump eslint-plugin-jest from 26.9.0 to 27.2.1 (#208)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump eslint-plugin-jest from 26.9.0 to 27.2.1

Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 26.9.0 to 27.2.1.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v26.9.0...v27.2.1)

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

Signed-off-by: dependabot[bot] <support@github.com>

* fix eslint issues

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shazron Abdullah <36107+shazron@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and shazron committed Jul 19, 2023
1 parent e282e1d commit 6921ac3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"eslint": "^8",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^26",
"eslint-plugin-jest": "^27",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6",
Expand Down
6 changes: 3 additions & 3 deletions test/generators/add-vscode-config/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ test('exports', () => {

test('absApp', () => {
const root = '/foo'
expect(() => absApp(undefined, undefined)).toThrowError()
expect(() => absApp(undefined, 'bar')).toThrowError()
expect(() => absApp(root, undefined)).toThrowError()
expect(() => absApp(undefined, undefined)).toThrow()
expect(() => absApp(undefined, 'bar')).toThrow()
expect(() => absApp(root, undefined)).toThrow()

expect(absApp(root, 'bar')).toEqual(path.join(root, 'bar'))
expect(absApp(root, path.join(root, 'bar'))).toEqual(path.join(root, 'bar'))
Expand Down

0 comments on commit 6921ac3

Please sign in to comment.