mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-05 23:09:47 +00:00
The jest-circus is now default runner, no need to depend on it explicitly. The testEnvironment also changed its default to "node". Also types/jest is now needless, we can use jest/globals instead. https://jestjs.io/blog/2021/05/25/jest-27
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
verbose: true
|
|
} |