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

9 lines
172 B
JavaScript
Raw Normal View History

2022-01-31 14:09:42 -05:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}