1
0
Fork 0
mirror of https://code.forgejo.org/actions/download-artifact synced 2025-06-07 20:48:21 +02:00
download-artifact/jest.config.ts

13 lines
260 B
TypeScript
Raw Normal View History

2025-03-19 11:17:03 +00:00
module.exports = {
2025-03-19 11:31:11 +00:00
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}