1
0
Files
setup-buildx-action/jest.config.ts
T

14 lines
310 B
TypeScript
Raw Normal View History

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