transmute/common/jest.config.js

17 lines
285 B
JavaScript
Raw Permalink Normal View History

2023-08-14 14:36:45 -04:00
module.exports = {
"reporters": ["default", "jest-junit"],
"roots": [
"<rootDir>/tests"
],
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
".+\\.(ts)$": "ts-jest"
},
collectCoverageFrom: [
'src/**/utils/**/*.ts',
'!src/**/utils/**/*.d.ts'
],
};