We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b35d5 commit 1162d3cCopy full SHA for 1162d3c
1 file changed
apps/webapp/vitest.config.ts
@@ -23,6 +23,10 @@ export default defineConfig({
23
exclude: ["test/**/*.e2e.test.ts", "test/**/*.e2e.full.test.ts"],
24
globals: true,
25
pool: "forks",
26
+ // Each fork boots its own testcontainer set (including the two-DB run-ops fixtures),
27
+ // so cap concurrency to keep per-runner container memory in check. Sharding still
28
+ // provides cross-runner parallelism.
29
+ poolOptions: { forks: { maxForks: 4, minForks: 1 } },
30
setupFiles: ["./test/setup.ts"], // load apps/webapp/.env
31
},
32
// @ts-ignore
0 commit comments