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
If code coverage generation is slow on your project, see [Profiling Test Performance | Code coverage](/guide/profiling-test-performance.html#code-coverage).
vitest:coverage Generate coverage total time 3521 ms
200
200
```
201
201
202
-
This profiling approach is great for detecting large files that are accidentally picked by coverage providers.
203
-
For example if your configuration is accidentally including large built minified Javascript files in code coverage, they should appear in logs.
204
-
In these cases you might want to adjust your [`coverage.include`](/config/#coverage-include) and [`coverage.exclude`](/config/#coverage-exclude) options.
If there is only one test file running, Vitest will output the full test tree of that file, simillar to the [`tree`](#tree-reporter)reporter. The default reporter will also print the test tree if there is at least one failed test in the file.
0 commit comments