Files
dependency-review-action/jest.config.js

10 lines
181 B
JavaScript
Raw Normal View History

2022-03-31 18:31:39 +02:00
module.exports = {
clearMocks: true,
2022-10-21 13:51:02 +00:00
moduleFileExtensions: ['js', 'json', 'ts'],
2022-03-31 18:31:39 +02:00
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
2022-10-21 13:51:02 +00:00
}