We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f03db16 commit 26e087bCopy full SHA for 26e087b
1 file changed
vitest.config.ts
@@ -20,6 +20,13 @@ export default defineConfig(
20
globals: true,
21
watch: false,
22
setupFiles: "./src/frontend/test-setup.ts",
23
+ // Make sure that our browser e2e tests run one by one:
24
+ // - `sequence.concurrent: false` within each test file
25
+ // - `fileParallelism: false` across test files
26
+ //
27
+ // This makes sure that WebdriverIO won't start more than one browser
28
+ // instance at the same time, which would result in the following error:
29
+ // `Could not start browser after 5 retries: Error: spawn ETXTBSY`
30
sequence: {
31
concurrent: false,
32
},
0 commit comments