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'],
|
|
|
|
|
transform: {
|
|
|
|
|
'^.+\\.ts$': 'ts-jest'
|
|
|
|
|
},
|
2022-05-15 09:46:37 -06:00
|
|
|
verbose: true
|
2020-06-13 12:46:29 +02:00
|
|
|
}
|