mirror of
https://github.com/actions/runner-container-hooks.git
synced 2025-12-13 16:16:46 +00:00
14 lines
326 B
JavaScript
14 lines
326 B
JavaScript
// eslint-disable-next-line import/no-commonjs
|
|
module.exports = {
|
|
clearMocks: true,
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*-test.ts'],
|
|
testRunner: 'jest-circus/runner',
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
setupFilesAfterEnv: ['./jest.setup.js'],
|
|
verbose: true
|
|
}
|