diff --git a/vitest.config.ts b/vitest.config.ts index b5ce555..4d16701 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -6,6 +6,12 @@ export default defineConfig({ coverage: { include: ["src/**/*.ts"], reporter: ["text", "json", "json-summary"], + thresholds: { + lines: 50, + branches: 50, + functions: 50, + statements: 50, + }, }, }, });