Files
initiative/vitest.config.ts
T
LukasandClaude Opus 5 67c398d3a2 Make the test gate fail when no tests match
vitest.config.ts set passWithNoTests: true, added in the 7dd4abb
scaffolding commit when the repo genuinely had no tests yet. Once tests
existed it became the same hazard as the oxlint bugs fixed in 91f46ff:
if the include globs ever stopped matching, the suite would exit 0
having run nothing.

Vitest already defaults to failing in that case, so removing the line is
the whole fix — a broken glob now reports "No test files found, exiting
with code 1". Verified by pointing the globs at a nonexistent directory.

Extends the gate check to flag the option coming back, and renames it
from check-lint-gate to check-gates now that it covers more than oxlint.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-05 14:16:04 +02:00

43 lines
797 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["packages/*/src/**/*.test.ts", "apps/*/src/**/*.test.{ts,tsx}"],
coverage: {
provider: "v8",
enabled: true,
exclude: ["**/dist/**"],
thresholds: {
"packages/domain/src": {
lines: 98,
branches: 96,
},
"packages/application/src": {
lines: 96,
branches: 90,
},
"apps/web/src/adapters": {
lines: 80,
branches: 62,
},
"apps/web/src/persistence": {
lines: 85,
branches: 70,
},
"apps/web/src/hooks": {
lines: 83,
branches: 66,
},
"apps/web/src/components": {
lines: 80,
branches: 71,
},
"apps/web/src/components/ui": {
lines: 93,
branches: 90,
},
},
},
},
});