mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 17:12:51 +00:00
f1c309a163
- Remove explicit dependency on jest-circus: this is now the default runner - Remove test timeout setting - Remove @types/jest from explicit dependencies
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
moduleFileExtensions: ['js', 'ts', 'json'],
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
verbose: true
|
|
}
|