tuitio-client-react/jestconfig.json

18 lines
388 B
JSON
Raw Permalink Normal View History

{
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
2023-02-11 20:52:00 +02:00
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
2023-02-11 20:52:00 +02:00
"testEnvironment": "jsdom",
2023-02-11 22:12:13 +02:00
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
}