vitest: Add threshold on vitest to check locally

This commit is contained in:
Valere
2025-11-27 16:39:45 +01:00
parent 4c2c7d51cf
commit e5509ba49b

View File

@@ -25,6 +25,12 @@ export default defineConfig((configEnv) =>
"src/utils/test-fixtures.ts",
"playwright/**",
],
thresholds: {
lines: 80,
functions: 80,
branches: 80,
statements: 80,
},
},
},
}),