Skip to content

Commit

Permalink
Merge pull request #574 from reviewdog/remove-jest-circus-from-packag…
Browse files Browse the repository at this point in the history
…e.json

jest-circus is now default test runner
  • Loading branch information
shogo82148 committed Jul 28, 2023
2 parents eb19da4 + 3371218 commit 90ddd44
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
11 changes: 5 additions & 6 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
moduleFileExtensions: ["js", "ts"],
testEnvironment: "node",
testMatch: ["**/*.test.ts"],
transform: {
'^.+\\.ts$': 'ts-jest'
"^.+\\.ts$": "ts-jest",
},
verbose: true
verbose: true,
};
1 change: 0 additions & 1 deletion package-lock.json

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

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jest": "27.2.3",
"jest": "29.6.2",
"jest-circus": "29.6.2",
"js-yaml": "4.1.0",
"prettier": "2.8.8",
"ts-jest": "29.1.1",
Expand Down

0 comments on commit 90ddd44

Please sign in to comment.