stale/jest.config.js

12 lines
253 B
JavaScript
Raw Normal View History

2019-08-04 09:34:59 +08:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts', '**/*.spec.ts'],
2019-08-04 09:34:59 +08:00
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
};