2022-03-31 18:31:39 +02:00
|
|
|
module.exports = {
|
|
|
|
|
clearMocks: true,
|
2022-10-21 13:51:02 +00:00
|
|
|
moduleFileExtensions: ['js', 'json', 'ts'],
|
2022-03-31 18:31:39 +02:00
|
|
|
testMatch: ['**/*.test.ts'],
|
|
|
|
|
transform: {
|
|
|
|
|
'^.+\\.ts$': 'ts-jest'
|
|
|
|
|
},
|
|
|
|
|
verbose: true
|
2022-10-21 13:51:02 +00:00
|
|
|
}
|