mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-16 19:27:39 +00:00
413fd78918
Co-authored-by: Tonye Jack <jtonye@ymail.com> Co-authored-by: GitHub Action <action@github.com>
13 lines
250 B
JavaScript
13 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"
|
|
]
|
|
}
|