4
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2025-11-07 13:06:55 +00:00
setup-node/jest.config.js
2025-10-14 14:07:58 +01:00

18 lines
No EOL
369 B
JavaScript

export default {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
extensionsToTreatAsEsm: ['.ts'],
globals: {
'ts-jest': {
useESM: true
}
},
transform: {
'^.+\\.ts$': 'ts-jest'
},
preset: 'ts-jest/presets/default-esm',
verbose: true
}