From ae6e8cdedc83a971dc2f0bbd4d65b5bba478a002 Mon Sep 17 00:00:00 2001 From: knowledgecode Date: Sun, 6 Sep 2026 09:41:19 +0900 Subject: [PATCH] test: remove coverage thresholds so coverage stays informational External contributors should be able to open PRs without meeting a coverage bar. The PR check (lint -> test) never ran coverage, but the push-only coverage job enforced thresholds and could fail after merge. Drop the thresholds so Codecov reporting is reference-only and never fails CI. --- vitest.config.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/vitest.config.ts b/vitest.config.ts index 8d84fb7..94aea37 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -12,13 +12,7 @@ export default defineConfig({ exclude: ['src/**/*.d.ts'], include: ['src/**/*.ts'], provider: 'v8', - reporter: ['html', 'lcov'], - thresholds: { - lines: 100, - statements: 100, - functions: 100, - branches: 95 - } + reporter: ['html', 'lcov'] }, include: ['tests/**/*.spec.ts'] }