From 42ccdd16466b8f7ae735f79e77addacc47416413 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 15 Jun 2025 12:40:53 +0300 Subject: [PATCH] test(server): try to use threads instead of forks to avoid ELIFECYCLE issues in the CI --- 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 ffd7b7427..07dc5ed29 100644 --- a/apps/server/vite.config.mts +++ b/apps/server/vite.config.mts @@ -15,6 +15,7 @@ export default defineConfig(() => ({ reportsDirectory: './test-output/vitest/coverage', provider: 'v8' as const, reporter: [ "text", "html" ] - } + }, + pool: "threads" }, }));