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 761bdfa commit e692a46Copy full SHA for e692a46
packages/vite-plugin-cloudflare/playground/vitest.config.e2e.ts
@@ -5,10 +5,8 @@ const debuglog = util.debuglog("@cloudflare:vite-plugin");
5
6
export default defineConfig({
7
test: {
8
- // We run these tests in a single fork to avoid them running in parallel.
9
- // Otherwise we occasionally get flakes where two tests are overwriting
10
- // the same output files.
11
- poolOptions: { forks: { singleFork: true } },
+ // We run these tests one file at a time.
+ // Otherwise we occasionally get flakes where two playground variants are overwriting the same files.
12
fileParallelism: false,
13
include: ["./**/__tests__/**/*.spec.[tj]s"],
14
setupFiles: ["./vitest-setup.ts"],
0 commit comments