mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
808 B
808 B
| title | outline |
|---|---|
| includeTaskLocation | Config | deep |
includeTaskLocation
- Type:
boolean - Default:
false
Should location property be included when Vitest API receives tasks in reporters. If you have a lot of tests, this might cause a small performance regression.
The location property has column and line values that correspond to the test or describe position in the original file.
This option will be auto-enabled if you don't disable it explicitly, and you are running Vitest with:
- Vitest UI
- or using the Browser Mode without headless mode
- or using HTML Reporter
::: tip This option has no effect if you do not use custom code that relies on this. :::