mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
feat: add "deno coverage" subcommand (#8664)
This commit adds a new subcommand called "coverage" which can generate code coverage reports to stdout in multiple formats from code coverage profiles collected to disk. Currently this supports outputting a pretty printed diff and the lcov format for interoperability with third-party services and tools. Code coverage is still collected via other subcommands that run and collect code coverage such as "deno test --coverage=<directory>" but that command no longer prints a pretty printed report at the end of a test run with coverage collection enabled. The restrictions on which files that can be reported on has also been relaxed and are fully controllable with the include and exclude regular expression flags on the coverage subcommand. Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
This commit is contained in:
parent
f6a80f34d9
commit
ae8874b4b2
27 changed files with 885 additions and 433 deletions
5
cli/tests/coverage/branch_test.ts
Normal file
5
cli/tests/coverage/branch_test.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
import { branch } from "./branch.ts";
|
||||
|
||||
Deno.test("branch", function () {
|
||||
branch(true);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue