mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
Théo LUDWIG
ce3b5e7b58
Currently the project is not tested automatically. It can be improved later, and then revert this commit.
20 lines
533 B
JSON
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"
|
|
]
|
|
}
|