mirror of https://github.com/actions/toolkit
12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
|
module.exports = {
|
||
|
clearMocks: true,
|
||
|
moduleFileExtensions: ['js', 'ts'],
|
||
|
roots: ['<rootDir>/packages'],
|
||
|
testEnvironment: 'node',
|
||
|
testMatch: ['**/__tests__/*.test.ts'],
|
||
|
testRunner: 'jest-circus/runner',
|
||
|
transform: {
|
||
|
'^.+\\.ts$': 'ts-jest'
|
||
|
},
|
||
|
verbose: true
|
||
|
}
|