Public Access
1
0
mirror of https://github.com/actions/checkout.git synced 2025-07-11 11:14:43 +00:00
Files
checkout/jest.config.js
Cory Miller 9c1e94e0ad Update NPM dependencies (#1703)
* Update dependencies manually
* Format files
* Update licenses
2024-04-24 12:04:10 -04:00

12 lines
253 B
JavaScript

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