personal-website/jest.config.json

21 lines
384 B
JSON
Raw Normal View History

2025-02-25 08:02:25 -05:00
{
"testPathIgnorePatterns": ["node_modules", "tests"],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.ts",
"!**/cli-tools/*",
"!**/*.config.js",
"!**/*.spec.ts",
"!**/lcov-report/*",
"!**/node_modules/**",
"!**/tests/*"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 40,
"lines": 70
}
}
}