Skip to content

Commit f263113

Browse files
committed
chore: simplify jest config
1 parent 5e06ee3 commit f263113

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

jest.config.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
module.exports = {
22
clearMocks: true,
3-
moduleFileExtensions: ['js', 'ts'],
3+
preset: 'ts-jest',
44
testEnvironment: 'node',
5-
testMatch: ['**/*.test.ts'],
6-
testRunner: 'jest-circus/runner',
7-
transform: {
8-
'^.+\\.ts$': 'ts-jest'
9-
},
5+
testMatch: ['<rootDir>/__tests__/**/*.test.ts'],
106
verbose: true
117
}

0 commit comments

Comments
 (0)