gpg/jest.config.ts

12 lines
228 B
TypeScript
Raw Normal View History

2020-05-03 14:46:05 -04:00
module.exports = {
clearMocks: true,
restoreMocks: true,
coverageDirectory: 'coverage',
2020-05-03 14:46:05 -04:00
moduleFileExtensions: ['js', 'ts'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
2020-05-03 14:46:05 -04:00
}