mirror of
https://github.com/actions/setup-node.git
synced 2025-11-07 13:06:55 +00:00
18 lines
No EOL
369 B
JavaScript
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
|
|
} |