Skip to content

Commit 1430770

Browse files
committed
chore(v0): drop html coverage reporter in CI
The coverage.reporter list was ['text', 'json', 'html']. CI never downloads the generated HTML coverage site - it's written to the runner and thrown away on job completion. Dropping it saves ~0.5-2s per CI test job and simplifies the coverage output directory. Kept: - text: printed to the CI log for quick pass-rate glances - json: consumed by codecov/codecov-action@v5, required for upload Local developers who want an HTML report can run: pnpm test:run --coverage --coverage.reporter=html ad-hoc - this config affects CI only. Trivial cleanup. Independent of the pool: vmThreads change (7943d5d) - each can be reverted separately. Stage 2 of v0 test pool spec.
1 parent 7943d5d commit 1430770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig({
88
testTimeout: 20_000,
99
coverage: {
1010
provider: 'v8',
11-
reporter: ['text', 'json', 'html'],
11+
reporter: ['text', 'json'],
1212
include: ['packages/0/src/**/*.ts', 'packages/0/src/**/*.vue'],
1313
exclude: [
1414
'**/*.test.ts',

0 commit comments

Comments
 (0)