mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-17 03:47:20 +00:00
14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
|
module.exports = {
|
||
|
clearMocks: true,
|
||
|
moduleFileExtensions: ['js', 'ts'],
|
||
|
testMatch: ['**/*.test.ts'],
|
||
|
transform: {
|
||
|
'^.+\\.ts$': 'ts-jest'
|
||
|
},
|
||
|
verbose: true,
|
||
|
testTimeout: 10000,
|
||
|
setupFiles: [
|
||
|
"<rootDir>/jest/setupEnv.cjs"
|
||
|
]
|
||
|
}
|