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:
|
|
| "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/**" |
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.
There was a problem hiding this comment.
@avivkeller are you satisfied with that answer?
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.