Skip to content
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

Open
3 of 6 tasks
kt3k opened this issue Nov 24, 2023 · 5 comments
Open
3 of 6 tasks

Coverage reporting feature improvement plans #21325

kt3k opened this issue Nov 24, 2023 · 5 comments
Labels
testing related to deno test and coverage

Comments

@kt3k
Copy link
Member

kt3k commented Nov 24, 2023

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

Proposed changes

deno test --coverage should cover all common tasks about test coverage reporting

  • i.e. it should do the same (or similar) as jest --coverage
  • i.e. deno test --coverage should do the following by default:
    • show coverage summaries by files
    • create html coverage report
    • create lcov report
    • have default output path
    • hide internal intermediate json files from the users

Tasks

@lucacasonato
Copy link
Member

I like the direction.

What if you run multiple separate deno test calls (for example with different flags), and then generate a single coverage report?

@kt3k
Copy link
Member Author

kt3k commented Nov 28, 2023

What if you run multiple separate deno test calls (for example with different flags), and then generate a single coverage report?

How about adding some option (like --merge), and if that flag is given, the command automatically look up the results (intermediate files) from the previous runs and merge them.

@lowlighter
Copy link
Contributor

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

@jespertheend
Copy link
Contributor

hide internal intermediate json files from the users

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.
Specifically, blob: urls from the json files are replaced with the paths of files that were used to generate the blob: content. (more info here)

But the $coverage_dir/.raw_data suggestion would totally suit my needs since they would still be accessible. I would only need to update the path of these files.

@KnorpelSenf
Copy link
Contributor

I'd love to see #18147 implemented.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
testing related to deno test and coverage
Projects
None yet
Development

No branches or pull requests

6 participants