From 8a4b4d93ee4372bad0c07f1f2876e289a328039f Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Mon, 21 Oct 2024 10:12:37 -0400 Subject: [PATCH] Fix minor typo: colleting -> collecting Just noticed this while reading the docs. --- docs/guide/profiling-test-performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/profiling-test-performance.md b/docs/guide/profiling-test-performance.md index 6d732dcae5ad..549272108193 100644 --- a/docs/guide/profiling-test-performance.md +++ b/docs/guide/profiling-test-performance.md @@ -17,7 +17,7 @@ When you run Vitest it reports multiple time metrics of your tests: - Transform: How much time was spent transforming the files. See [File Transform](#file-transform). - Setup: Time spent for running the [`setupFiles`](/config/#setupfiles) files. -- Collect: Time spent for colleting all tests in the test files. This includes the time it took to import all file dependencies. +- Collect: Time spent for collecting all tests in the test files. This includes the time it took to import all file dependencies. - Tests: Time spent for actually running the test cases. - Environment: Time spent for setting up the test [`environment`](/config/#environment), for example JSDOM. - Prepare: Time Vitest uses to prepare the test runner.