mirror of https://github.com/actions/toolkit
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
|
module.exports = {
|
||
|
clearMocks: true,
|
||
|
moduleFileExtensions: ['js', 'ts'],
|
||
|
testEnvironment: 'node',
|
||
|
testMatch: ['**/*.test.ts'],
|
||
|
transform: {
|
||
|
'^.+\\.ts$': 'ts-jest'
|
||
|
},
|
||
|
verbose: true
|
||
|
}
|