summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/multisource/test.ts
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-12-08 16:54:52 +0900
committerGitHub <noreply@github.com>2023-12-08 16:54:52 +0900
commitd68d1e202285df30893968c8ba71b4a0a769b357 (patch)
tree40cb0c267c49e9b7e147c92e2f16a304cb2c413c /cli/tests/testdata/coverage/multisource/test.ts
parentc5c5dea90debcc5ec53b4803ca530558df32e43f (diff)
feat(coverage): add html reporter (#21495)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/testdata/coverage/multisource/test.ts')
-rw-r--r--cli/tests/testdata/coverage/multisource/test.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/cli/tests/testdata/coverage/multisource/test.ts b/cli/tests/testdata/coverage/multisource/test.ts
new file mode 100644
index 000000000..6adf6f52c
--- /dev/null
+++ b/cli/tests/testdata/coverage/multisource/test.ts
@@ -0,0 +1,20 @@
+import { foo } from "./foo.ts";
+import { bar } from "./bar.ts";
+import { qux } from "./baz/qux.ts";
+import { quux } from "./baz/quux.ts";
+
+Deno.test("foo", () => {
+ foo(true);
+});
+
+Deno.test("bar", () => {
+ bar(false);
+});
+
+Deno.test("qux", () => {
+ qux(true);
+});
+
+Deno.test("quux", () => {
+ quux(false);
+});