Files
gradle/sources/jest.config.js
2024-01-25 11:53:44 -07:00

11 lines
208 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts', 'json'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}