This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/jest.config.json

20 lines
533 B
JSON
Raw Normal View History

2024-02-16 22:51:50 +01:00
{
"preset": "jest-expo",
"roots": ["./"],
2024-03-16 00:36:44 +01:00
"setupFilesAfterEnv": ["@testing-library/react-native/extend-expect"],
2024-02-16 22:51:50 +01:00
"fakeTimers": {
"enableGlobally": true
},
"collectCoverage": false,
2024-02-16 22:51:50 +01:00
"coverageDirectory": "coverage",
"coverageReporters": ["text", "text-summary", "cobertura"],
"collectCoverageFrom": [
"<rootDir>/**/*.{ts,tsx}",
2024-03-16 00:36:44 +01:00
"!<rootDir>/presentation/react/components/ExternalLink.tsx",
2024-02-16 22:51:50 +01:00
"!<rootDir>/.expo",
"!<rootDir>/app/+html.tsx",
"!<rootDir>/app/**/_layout.tsx",
"!**/*.d.ts"
]
}