From bccf846bc41529d041fc609b2bde199a0162c57b Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 29 Jan 2026 19:08:10 -0800 Subject: [PATCH] =?UTF-8?q?chore(webmap):=20=F0=9F=94=A7=20Update=20e2e=20?= =?UTF-8?q?test=20config=20for=20webmap=20feature=20to=20optimize=20execut?= =?UTF-8?q?ion,=20coverage,=20or=20environment=20setup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/webmap/shared/vitest.config.e2e.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 features/webmap/shared/vitest.config.e2e.ts diff --git a/features/webmap/shared/vitest.config.e2e.ts b/features/webmap/shared/vitest.config.e2e.ts new file mode 100644 index 000000000..36783b138 --- /dev/null +++ b/features/webmap/shared/vitest.config.e2e.ts @@ -0,0 +1,17 @@ +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + include: ['src/test-helpers/**/*.e2e-spec.ts'], + globals: true, + environment: 'node', + testTimeout: 30000, + hookTimeout: 60000, + pool: 'forks', + poolOptions: { + forks: { + singleFork: true, + }, + }, + }, +});