From e928337fe9a6fb284163266cdb7cb4fce6966c27 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 5 Mar 2026 23:40:43 +0200 Subject: [PATCH] test(server): adjust timeout --- apps/server/vite.config.mts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/server/vite.config.mts b/apps/server/vite.config.mts index 0f2ac57121..2fa10ff798 100644 --- a/apps/server/vite.config.mts +++ b/apps/server/vite.config.mts @@ -19,7 +19,8 @@ export default defineConfig(() => ({ exclude: [ "spec/build-checks/**", ], - hookTimeout: 40_000, + hookTimeout: 20_000, + testTimeout: 40_000, reporters: [ "verbose", ["html", { outputFile: "./test-output/vitest/html/index.html" }]