1
0
Files
metadata-action/jest.config.ts
T

14 lines
310 B
TypeScript
Raw Normal View History

2020-10-25 02:25:23 +01:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
2022-03-22 21:09:00 +01:00
setupFiles: ['dotenv/config'],
2020-10-25 02:25:23 +01:00
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
moduleNameMapper: {
'^csv-parse/sync': '<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs'
},
2022-03-22 21:09:00 +01:00
verbose: true
};