oneuptime/Common/jest.config.json

44 lines
868 B
JSON
Raw Normal View History

2022-04-22 18:47:45 +00:00
{
"preset": "ts-jest",
"testPathIgnorePatterns": [
"node_modules",
"dist"
],
2022-04-22 18:47:45 +00:00
"verbose": true,
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json",
"babelConfig": false
}
},
"moduleFileExtensions": [
"ts",
"js",
"json"
],
2022-04-22 18:47:45 +00:00
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"collectCoverage": false,
"coverageReporters": [
"text",
"lcov"
],
2022-05-04 20:47:41 +00:00
"testRegex": "./Tests/(.*).test.ts",
"collectCoverageFrom": [
"./**/*.(tsx||ts)"
],
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
},
2022-04-22 18:47:45 +00:00
"coverageThreshold": {
"global": {
"lines": 0,
"functions": 0,
"branches": 0,
"statements": 0
}
}
}