2019-08-03 21:34:59 -04:00
|
|
|
module.exports = {
|
|
|
|
|
clearMocks: true,
|
|
|
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
|
|
|
testEnvironment: 'node',
|
2020-11-20 12:48:33 +01:00
|
|
|
testMatch: ['**/*.test.ts', '**/*.spec.ts'],
|
2019-08-03 21:34:59 -04:00
|
|
|
testRunner: 'jest-circus/runner',
|
|
|
|
|
transform: {
|
|
|
|
|
'^.+\\.ts$': 'ts-jest'
|
|
|
|
|
},
|
2021-05-03 15:20:07 +02:00
|
|
|
verbose: true,
|
|
|
|
|
setupFilesAfterEnv: [`./jest/test.ts`]
|
2020-11-20 12:48:33 +01:00
|
|
|
};
|