This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
checkout/jest.config.js

12 lines
253 B
JavaScript
Raw Permalink Normal View History

2025-06-05 13:07:41 +08:00
module.exports = {
clearMocks: true,
fakeTimers: {},
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}