utils/jest.config.js

17 lines
286 B
JavaScript
Raw Normal View History

2024-02-07 02:31:16 -05:00
module.exports = {
"reporters": ["default", "jest-junit"],
"roots": [
"<rootDir>/tests"
],
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
".+\\.(ts)$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.ts",
"!**/node_modules/**"
],
};