Files
checkout/jest.config.js
T

12 lines
253 B
JavaScript
Raw Normal View History

2019-12-03 10:28:59 -05:00
module.exports = {
clearMocks: true,
2024-04-24 12:04:10 -04:00
fakeTimers: {},
2019-12-03 10:28:59 -05:00
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}