actions/sources/jest.config.js

15 lines
293 B
JavaScript
Raw Permalink Normal View History

2019-09-20 23:06:59 +02:00
module.exports = {
clearMocks: true,
2020-06-13 12:46:29 +02:00
moduleFileExtensions: ['js', 'ts', 'json'],
2019-09-20 23:06:59 +02:00
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
reporters: [
'default',
'@gradle/develocity-agent/jest-reporter',
],
verbose: true
2020-06-13 12:46:29 +02:00
}