Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1100 +/- ##
==========================================
+ Coverage 90.70% 91.97% +1.27%
==========================================
Files 220 215 -5
Lines 21132 20840 -292
Branches 1991 1991
==========================================
Hits 19167 19167
+ Misses 1958 1666 -292
Partials 7 7 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Contributor
|
avivkeller
reviewed
Sep 15, 2026
Comment on lines
4
to
+14
| "eslint.config.mjs", | ||
| "**/fixtures", | ||
| "packages/node-legacy/src/legacy-html/assets", | ||
| "packages/react/src/html/ui", | ||
| "**/*.d.ts" | ||
| "**/*.d.ts", | ||
| "www/**", | ||
| "out/**", | ||
| "node/**", | ||
| "playwright.config.js", | ||
| "**/doc-kit.config.mjs", | ||
| "e2e/**" |
Contributor
Author
There was a problem hiding this comment.
The e2e directory contains only test-related files and configuration, not production code, so we can exclude it from the c8 coverage report. The E2E tests continue to run separately through test:e2e.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
When executing
node --run test:coveragelocally, the output includes the JavaScript files printed in the www and out folders, which contain too much unnecessary information and interfere with viewing the truly useful information.Validation
Related Issues
Check List
node --run testand all tests passed.node --run format:check&node --run lint.