summaryrefslogtreecommitdiff
path: root/cli/tests/test_complex_coverage.out
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-01-30 03:45:22 +0800
committerGitHub <noreply@github.com>2021-01-29 14:45:22 -0500
commit9965fc8cc35afc0ff4b338b0d893742b84fe102d (patch)
treedc845b973016e7e5b44e014c49eabe6ce6a2f44b /cli/tests/test_complex_coverage.out
parent013b8fe606ba146ad9f7d15a8a3a0e05defb0a12 (diff)
fix(cli/coverage): display mapped instrumentation line counts (#9310)
Diffstat (limited to 'cli/tests/test_complex_coverage.out')
-rw-r--r--cli/tests/test_complex_coverage.out18
1 files changed, 18 insertions, 0 deletions
diff --git a/cli/tests/test_complex_coverage.out b/cli/tests/test_complex_coverage.out
new file mode 100644
index 000000000..1082d098c
--- /dev/null
+++ b/cli/tests/test_complex_coverage.out
@@ -0,0 +1,18 @@
+Check [WILDCARD]/tests/$deno$test.ts
+running 1 tests
+test complex ... ok ([WILDCARD])
+
+test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD])
+
+cover [WILDCARD]/tests/subdir/complex.ts ... 50.000% (10/20)
+ 25 | export function unused(
+ 26 | foo: string,
+ 27 | bar: string,
+ 28 | baz: string,
+-----|-----
+ 30 | return complex(
+ 31 | foo,
+ 32 | bar,
+ 33 | baz,
+ 34 | );
+ 35 | }