mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
20 lines
499 B
JSON
20 lines
499 B
JSON
{
|
|
"preset": "jest-expo",
|
|
"roots": ["./"],
|
|
"setupFilesAfterEnv": ["<rootDir>/tests/jest.setup.ts"],
|
|
"fakeTimers": {
|
|
"enableGlobally": true
|
|
},
|
|
"collectCoverage": true,
|
|
"coverageDirectory": "coverage",
|
|
"coverageReporters": ["text", "text-summary", "cobertura"],
|
|
"collectCoverageFrom": [
|
|
"<rootDir>/**/*.{ts,tsx}",
|
|
"!<rootDir>/components/ExternalLink.tsx",
|
|
"!<rootDir>/.expo",
|
|
"!<rootDir>/app/+html.tsx",
|
|
"!<rootDir>/app/**/_layout.tsx",
|
|
"!**/*.d.ts"
|
|
]
|
|
}
|