From 127fcc07277e3dda457c8641e87e3f13c57405c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 23 Feb 2026 02:23:07 +0100 Subject: [PATCH] test: increase vitest timeouts to 120s --- vitest.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vitest.config.ts b/vitest.config.ts index f2e2fd188..14a7a6b42 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -13,9 +13,9 @@ export default defineConfig({ }, }, fileParallelism: false, - hookTimeout: 60000, + hookTimeout: 120000, include: ['tests/**/*.test.mjs'], setupFiles: ['./tests/vitest.setup.mjs'], - testTimeout: 60000, + testTimeout: 120000, }, }) -- 2.43.0