Extender cobertura de tests a auth, validación y billing

This commit is contained in:
Carlos Narro
2026-05-30 19:59:35 +02:00
parent 7565a7bf46
commit 4f48b1591c

View File

@@ -10,7 +10,14 @@ export default defineConfig({
include: ['tests/**/*.test.ts'], include: ['tests/**/*.test.ts'],
coverage: { coverage: {
provider: 'v8', provider: 'v8',
include: ['src/budget/**'], include: [
'src/budget/**',
'src/lib/auth/password.ts',
'src/lib/auth/tokens.ts',
'src/lib/auth/authz.ts',
'src/lib/validation/signup.ts',
'src/lib/billing/plan.ts',
],
thresholds: { lines: 70, functions: 70, statements: 70, branches: 70 }, thresholds: { lines: 70, functions: 70, statements: 70, branches: 70 },
}, },
}, },