[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

docs: adjust example for merging sharded results with coverage (#7337)

authored by

Nathan and committed by
GitHub
(Jan 22, 2025, 7:12 PM +0200) 45085cf8 5e001eea

+3 -3
+3 -3
docs/guide/features.md
··· 237 237 All test and coverage results can be merged at the end of your CI pipeline using `--merge-reports` command: 238 238 239 239 ```bash 240 - vitest --shard=1/2 --reporter=blob 241 - vitest --shard=2/2 --reporter=blob 242 - vitest --merge-reports --reporter=junit --coverage.reporter=text 240 + vitest --shard=1/2 --reporter=blob --coverage 241 + vitest --shard=2/2 --reporter=blob --coverage 242 + vitest --merge-reports --reporter=junit --coverage 243 243 ``` 244 244 245 245 See [`Improving Performance | Sharding`](/guide/improving-performance#sharding) for more information.