Files
typescript-action/jest.config.js
T

9 lines
172 B
JavaScript
Raw Normal View History

2019-07-22 14:15:40 -04:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
2019-06-24 16:19:34 -04:00
}