chore(webmap): 🔧 Update e2e test config for webmap feature to optimize execution, coverage, or environment setup

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-01-29 19:08:10 -08:00
parent 9a97359a20
commit bccf846bc4

View file

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