2019-09-20 23:06:59 +02:00
|
|
|
module.exports = {
|
|
|
|
|
clearMocks: true,
|
2020-06-13 12:46:29 +02:00
|
|
|
moduleFileExtensions: ['js', 'ts', 'json'],
|
2019-09-20 23:06:59 +02:00
|
|
|
testEnvironment: 'node',
|
|
|
|
|
testMatch: ['**/*.test.ts'],
|
|
|
|
|
testRunner: 'jest-circus/runner',
|
|
|
|
|
transform: {
|
|
|
|
|
'^.+\\.ts$': 'ts-jest'
|
|
|
|
|
},
|
2020-06-13 12:46:29 +02:00
|
|
|
verbose: true,
|
|
|
|
|
setupFilesAfterEnv: ['./jest.setup.js']
|
|
|
|
|
}
|