1
0
Files
build-push-action/jest.config.ts
T

11 lines
207 B
TypeScript
Raw Normal View History

2020-08-17 02:32:27 +02:00
module.exports = {
clearMocks: false,
2020-08-17 02:32:27 +02:00
moduleFileExtensions: ['js', 'ts'],
setupFiles: ["dotenv/config"],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
2022-03-15 21:59:52 +01:00
verbose: true
2020-08-17 02:32:27 +02:00
}