gradle-build-action/jest.config.js

11 lines
208 B
JavaScript
Raw Normal View History

2019-09-20 17:06:59 -04:00
module.exports = {
clearMocks: true,
2020-06-13 06:46:29 -04:00
moduleFileExtensions: ['js', 'ts', 'json'],
2019-09-20 17:06:59 -04:00
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
2020-06-13 06:46:29 -04:00
}