From a2ac50d33c1b36101bed3f8ce366994952cf3ac3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 23 Feb 2026 00:22:47 +0100 Subject: [PATCH] test: relax coverage thresholds and increase timeouts --- vitest.config.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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, }, }) -- 2.53.0