2020-10-08 00:52:52 +02:00
|
|
|
module.exports = {
|
|
|
|
|
clearMocks: true,
|
|
|
|
|
moduleFileExtensions: ['js', 'ts'],
|
2022-05-04 14:41:15 +02:00
|
|
|
setupFiles: ['dotenv/config'],
|
2020-10-08 00:52:52 +02:00
|
|
|
testMatch: ['**/*.test.ts'],
|
|
|
|
|
transform: {
|
|
|
|
|
'^.+\\.ts$': 'ts-jest'
|
|
|
|
|
},
|
2022-05-04 14:41:15 +02:00
|
|
|
moduleNameMapper: {
|
|
|
|
|
'^csv-parse/sync': '<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs'
|
|
|
|
|
},
|
2022-03-21 11:28:57 +01:00
|
|
|
verbose: true
|
2022-05-04 14:41:15 +02:00
|
|
|
};
|