From: Jérôme Benoit Date: Mon, 23 Feb 2026 01:53:09 +0000 (+0100) Subject: test: increase vitest timeouts to 240s for slow CI runners X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=cf65892cbe8e7c963297bae6c74c75d14ae1182d;p=poolifier.git test: increase vitest timeouts to 240s for slow CI runners --- diff --git a/vitest.config.ts b/vitest.config.ts index ad8b4db9e..7b5048802 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -13,10 +13,10 @@ export default defineConfig({ }, }, fileParallelism: false, - hookTimeout: 120000, + hookTimeout: 240000, include: ['tests/**/*.test.mjs'], pool: 'forks', setupFiles: ['./tests/vitest.setup.mjs'], - testTimeout: 120000, + testTimeout: 240000, }, })