Files
add-to-project/jest.config.js

10 lines
191 B
JavaScript
Raw Normal View History

2022-01-31 14:09:42 -05:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
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
}