From: Jérôme Benoit Date: Sun, 22 Feb 2026 23:22:47 +0000 (+0100) Subject: test: relax coverage thresholds and increase timeouts X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=a2ac50d33c1b36101bed3f8ce366994952cf3ac3;p=poolifier.git test: relax coverage thresholds and increase timeouts --- diff --git a/vitest.config.ts b/vitest.config.ts index 11f1f1833..f2e2fd188 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -6,16 +6,16 @@ export default defineConfig({ provider: 'v8', reporter: ['text', 'html', 'lcov'], thresholds: { - branches: 90, - functions: 90, - lines: 90, - statements: 90, + branches: 75, + functions: 80, + lines: 80, + statements: 80, }, }, fileParallelism: false, - hookTimeout: 30000, + hookTimeout: 60000, include: ['tests/**/*.test.mjs'], setupFiles: ['./tests/vitest.setup.mjs'], - testTimeout: 30000, + testTimeout: 60000, }, })