Phases 6-7

This commit is contained in:
Aerilyn Weber 2026-05-14 14:47:23 +09:00
parent 76a516a417
commit 029940b079
111 changed files with 17247 additions and 447 deletions

View file

@ -20,27 +20,27 @@ export default defineConfig({
coverage: {
provider: 'v8',
enabled: false,
// @ts-expect-error -- v8 provider supports `all` but types lag behind
all: true,
include: ['src/**/*.{ts,tsx}'],
exclude: [
'src/**/*.test.{ts,tsx}',
'src/test-utils.tsx',
'src/mocks/**',
'src/app/layout.tsx',
'src/app/api/**',
'src/lib/auth.ts',
'src/proxy.ts',
'src/**/*.d.ts',
'src/app/(dashboard)/layout.tsx',
'src/components/**',
'src/app/login/**',
],
reporter: ['text', 'lcov', 'json-summary', 'html'],
reportsDirectory: './coverage',
thresholds: {
lines: 24,
functions: 18,
branches: 18,
statements: 24,
lines: 90,
functions: 85,
branches: 75,
statements: 85,
},
},
testTimeout: 10_000,