summaryrefslogtreecommitdiff
path: root/tests/testdata/coverage/multisource/test.ts
blob: 350421177d889cbd7013f47eaec02bbdf4e184c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
  foo(false);
});

Deno.test("bar", () => {
  bar(false);
});

Deno.test("qux", () => {
  qux(true);
  qux(false);
});

Deno.test("quux", () => {
  quux(false);
});