tuitio-client/jestconfig.json

17 lines
362 B
JSON
Raw Permalink Normal View History

2023-02-07 00:32:31 +02:00
{
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
2023-02-10 02:20:52 +02:00
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
2023-02-11 04:01:15 +02:00
"collectCoverage": true,
2023-02-10 02:20:52 +02:00
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
2023-02-07 00:32:31 +02:00
}