diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-01-07 19:45:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 12:45:42 +0100 |
commit | 9b3338fa2f61060ed92abe850fbd31170006217e (patch) | |
tree | f7335078456dbf133060008e80a56e0ed4725f8c /cli/tests/integration_tests.rs | |
parent | f8df9938c51e2047bad975faeba7b14fc5d5a276 (diff) |
fix(coverage): report partial lines as uncovered (#9033)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 31d634274..cd222f0b4 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3316,6 +3316,12 @@ itest!(deno_test_coverage { exit_code: 0, }); +itest!(deno_test_branch_coverage { + args: "test --coverage --unstable test_branch_coverage.ts", + output: "test_branch_coverage.out", + exit_code: 0, +}); + itest!(deno_test_coverage_explicit { args: "test --coverage=.test_coverage --unstable test_coverage.ts", output: "test_coverage.out", |