2022-01-31 14:09:42 -05:00
|
|
|
module.exports = {
|
|
|
|
|
clearMocks: true,
|
|
|
|
|
moduleFileExtensions: ['js', 'ts'],
|
2025-08-15 17:31:52 +00:00
|
|
|
testMatch: ['**/*.test.ts', '**/*.test.js'],
|
2022-01-31 14:09:42 -05:00
|
|
|
transform: {
|
2023-02-27 13:15:25 +00:00
|
|
|
'^.+\\.ts$': 'ts-jest',
|
2022-01-31 14:09:42 -05:00
|
|
|
},
|
2023-02-27 13:15:25 +00:00
|
|
|
verbose: true,
|
2022-01-31 15:38:31 -05:00
|
|
|
}
|