typescript-action/jest.config.js

9 lines
172 B
JavaScript
Raw Normal View History

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