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
Copy file name to clipboardExpand all lines: docs/guide/profiling-test-performance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ When you run Vitest it reports multiple time metrics of your tests:
20
20
- Collect: Time spent forcollecting all testsin the test files. This includes the time it took to import all file dependencies.
21
21
- Tests: Time spent for actually running the test cases.
22
22
- Environment: Time spent for setting up the test [`environment`](/config/#environment), for example JSDOM.
23
-
- Prepare: Time Vitest uses to prepare the test runner.
23
+
- Prepare: Time Vitest uses to prepare the test runner. When running tests in Node, this is the time to import and execute all internal utilities inside the worker. When running tests in the browser, this also includes the time to initiate the iframe.
0 commit comments