mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-16 09:27:57 +00:00
13 lines
251 B
JavaScript
13 lines
251 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"
|
|
]
|
|
};
|