1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-04 07:20:07 +02:00
checkout/jest.config.js

11 lines
235 B
JavaScript
Raw Normal View History

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