osr-root-router/test/integration/jest.json
2024-05-25 10:36:47 +02:00

33 lines
641 B
JSON

{
"testTimeout": 10000,
"rootDir": "../../",
"modulePaths": [
"."
],
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/integration/**/*.spec.ts"
],
"collectCoverage": true,
"coverageDirectory": "coverage-integration",
"collectCoverageFrom": [
"./integration"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
}