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, + }, + }, + }, +});