e4c4379b06
CI / Architecture Guardrails (push) Failing after 49s
CI / Lint (push) Successful in 4m44s
CI / Typecheck (push) Successful in 6m23s
CI / Assistant Split Regression (push) Successful in 6m21s
CI / Build (push) Has been skipped
CI / E2E Tests (push) Has been skipped
CI / Fresh-Linux Docker Deploy (push) Has been skipped
CI / Unit Tests (push) Failing after 6m53s
CI / Release Images (push) Has been skipped
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
302 B
TypeScript
18 lines
302 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: "node",
|
|
coverage: {
|
|
provider: "v8",
|
|
thresholds: {
|
|
lines: 80,
|
|
functions: 75,
|
|
branches: 72,
|
|
statements: 80,
|
|
},
|
|
},
|
|
},
|
|
});
|