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

14 lines
311 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'],
2020-08-17 02:32:27 +02:00
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
moduleNameMapper: {
'^csv-parse/sync': '<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs'
},
2022-03-15 21:59:52 +01:00
verbose: true
};