summaryrefslogtreecommitdiff
path: root/cli/tests/test_complex_coverage.ts
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.ts
parent013b8fe606ba146ad9f7d15a8a3a0e05defb0a12 (diff)
fix(cli/coverage): display mapped instrumentation line counts (#9310)
Diffstat (limited to 'cli/tests/test_complex_coverage.ts')
-rw-r--r--cli/tests/test_complex_coverage.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/test_complex_coverage.ts b/cli/tests/test_complex_coverage.ts
new file mode 100644
index 000000000..06f17d87d
--- /dev/null
+++ b/cli/tests/test_complex_coverage.ts
@@ -0,0 +1,5 @@
+import { complex } from "./subdir/complex.ts";
+
+Deno.test("complex", function () {
+ complex("foo", "bar", "baz");
+});