You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Default:** the same as [`fileParallelism`](#fileparallelism)
1543
-
-**CLI:**`--browser.fileParallelism=false`
1544
-
1545
-
Create all test iframes at the same time so they are running in parallel.
1546
-
1547
-
This makes it impossible to use interactive APIs (like clicking or hovering) because there are several iframes on the screen at the same time, but if your tests don't rely on those APIs, it might be much faster to just run all of them at the same time.
1548
-
1549
-
::: tip
1550
-
If you disabled isolation via [`browser.isolate=false`](#browser-isolate), your test files will still run one after another because of the nature of the test runner.
Copy file name to clipboardExpand all lines: docs/guide/cli-table.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,6 @@
57
57
|`--browser.providerOptions <options>`| Options that are passed down to a browser provider. Visit [`browser.providerOptions`](https://vitest.dev/config/#browser-provideroptions) for more information |
58
58
|`--browser.slowHijackESM`| Let Vitest use its own module resolution on the browser to enable APIs such as vi.mock and vi.spyOn. Visit [`browser.slowHijackESM`](https://vitest.dev/config/#browser-slowhijackesm) for more information (default: `false`) |
59
59
|`--browser.isolate`| Run every browser test file in isolation. To disable isolation, use `--browser.isolate=false` (default: `true`) |
60
-
|`--browser.fileParallelism`| Should all test files run in parallel. Use `--browser.file-parallelism=false` to disable (default: same as `--file-parallelism`) |
61
60
|`--pool <pool>`| Specify pool, if not running in the browser (default: `threads`) |
62
61
|`--poolOptions.threads.isolate`| Isolate tests in threads pool (default: `true`) |
63
62
|`--poolOptions.threads.singleThread`| Run tests inside a single thread (default: `false`) |
0 commit comments