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
Théo LUDWIG ce3b5e7b58
ci: disable test coverage temporarly
Currently the project is not tested automatically.
It can be improved later, and then revert this commit.
2024-03-23 01:18:46 +01:00

20 lines
533 B
JSON

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