This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
1
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-11-15 16:43:44 -05:00
Code
Issues
Wiki
Activity
c347dfcd56
denoland-deno
/
cli
/
tests
/
run_coverage.ts
4 lines
60 B
TypeScript
Raw
Normal View
History
Unescape
Escape
fix(coverage): merge duplicate reports (#8942) Merging multiple runs isn't quite right because we rely on a 0 count to signal that a block hasn't been called. Other tools like c8 expect this to be true as-well so we need to do our best to merge coverage files rather than duplicating them.
2021-01-04 11:01:21 -05:00
import
{
returnsHi
}
from
"./subdir/mod1.ts"
;
feat(unstable): collect coverage from the run command (#8893) This adds implicit coverage collection to the run command when a coverage collection directory is set (via an environment variable).
2020-12-28 10:51:26 -05:00
fix(coverage): merge duplicate reports (#8942) Merging multiple runs isn't quite right because we rely on a 0 count to signal that a block hasn't been called. Other tools like c8 expect this to be true as-well so we need to do our best to merge coverage files rather than duplicating them.
2021-01-04 11:01:21 -05:00
returnsHi
(
)
;
Copy permalink