download-artifact/jest.config.ts

25 lines
496 B
TypeScript
Raw Permalink Normal View History

2026-01-30 14:15:49 -05:00
export default {
2025-03-19 11:31:11 +00:00
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
2026-01-30 14:15:49 -05:00
'^.+\\.ts$': [
'ts-jest',
{
useESM: true,
diagnostics: {
ignoreCodes: [151002]
}
}
]
},
extensionsToTreatAsEsm: ['.ts'],
transformIgnorePatterns: ['node_modules/(?!(@actions)/)'],
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1'
2025-03-19 11:31:11 +00:00
},
verbose: true
}