-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Coverage reporting feature improvement plans #21325
Comments
I like the direction. What if you run multiple separate |
How about adding some option (like |
A merge feature would be nice as it'd allow to combine coverage from different sources too (like when running code in another v8 context, such as browsers when puppeteer) Also if the summary is being reworked, it may be an opportunity to take a look back at the --threshold in the meantime, I think the previous attempts failed because it was unclear how the total was supposed to be computed |
I'd like to point out that I'm currently relying on the intermediate files so that I can modify coverage data before generating an lcov file. But the |
I'd love to see #18147 implemented. |
This suggests improvements in test coverage reporting feature of Deno.
The problem
Current test coverage reporting feature has several flaws, such as requiring unnecessary boilerplate commands or setups, lacking basic capability, etc.
details
deno test --coverage
anddeno coverage
Proposed changes
deno test --coverage
should cover all common tasks about test coverage reportingjest --coverage
deno test --coverage
should do the following by default:Tasks
deno coverage
(non breaking change)deno coverage
(non breaking change) feat(coverage): add html reporter #21495deno coverage
todeno test --coverage
with 3 default outputs #28218--coverage
option (./coverage
) (non breaking change) feat(test): add default to --coverage option #21510--threshold=<percent>
option to make program exit with non-0 code$coverage_dir/.raw_data
(non breaking change)(optional) deprecateundesirabledeno coverage
command. (breaking change)The text was updated successfully, but these errors were encountered: