diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-01-30 03:45:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 14:45:22 -0500 |
commit | 9965fc8cc35afc0ff4b338b0d893742b84fe102d (patch) | |
tree | dc845b973016e7e5b44e014c49eabe6ce6a2f44b /cli/tests/integration_tests.rs | |
parent | 013b8fe606ba146ad9f7d15a8a3a0e05defb0a12 (diff) |
fix(cli/coverage): display mapped instrumentation line counts (#9310)
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 eab49a3c4..7eae47859 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3478,6 +3478,12 @@ itest!(deno_test_coverage { exit_code: 0, }); +itest!(deno_test_complex_coverage { + args: "test --coverage --unstable test_complex_coverage.ts", + output: "test_complex_coverage.out", + exit_code: 0, +}); + itest!(deno_test_comment_coverage { args: "test --coverage --unstable test_comment_coverage.ts", output: "test_comment_coverage.out", |