setup-graalvm/jest.config.js

10 lines
173 B
JavaScript
Raw Normal View History

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