Files
npm-audit-action/jest.config.js

15 lines
304 B
JavaScript
Raw Normal View History

2019-12-08 19:17:13 +09:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
moduleNameMapper: {
'^axios$': require.resolve('axios'),
},
2019-12-08 19:17:13 +09:00
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}