mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
26 lines
796 B
JSON
26 lines
796 B
JSON
{
|
|
"preset": "jest-expo",
|
|
"roots": ["./"],
|
|
"setupFilesAfterEnv": ["<rootDir>/tests/setup.ts"],
|
|
"fakeTimers": {
|
|
"enableGlobally": true
|
|
},
|
|
"collectCoverage": false,
|
|
"coverageDirectory": "coverage",
|
|
"coverageReporters": ["text", "text-summary", "cobertura"],
|
|
"collectCoverageFrom": [
|
|
"<rootDir>/**/*.{ts,tsx}",
|
|
"!<rootDir>/tests/**/*",
|
|
"!<rootDir>/domain/repositories/**/*",
|
|
"!<rootDir>/infrastructure/instances.ts",
|
|
"!<rootDir>/infrastructure/supabase/supabase-types.ts",
|
|
"!<rootDir>/infrastructure/supabase/supabase.ts",
|
|
"!<rootDir>/presentation/react-native/ui/ExternalLink.tsx",
|
|
"!<rootDir>/presentation/react/contexts/**/*",
|
|
"!<rootDir>/.expo",
|
|
"!<rootDir>/app/+html.tsx",
|
|
"!<rootDir>/app/**/_layout.tsx",
|
|
"!**/*.d.ts"
|
|
]
|
|
}
|