setup-graalvm/jest.config.js

9 lines
172 B
JavaScript
Raw Normal View History

2022-01-03 15:43:40 +08:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}