1
0
Files

13 lines
295 B
JavaScript
Raw Permalink Normal View History

2019-08-03 21:34:59 -04:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts', '**/*.spec.ts'],
2019-08-03 21:34:59 -04:00
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true,
setupFilesAfterEnv: [`./jest/test.ts`]
};