1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-03 17:08:35 -05:00
denoland-deno/cli/tests/testdata/coverage/multisource/test.ts
2023-12-12 12:42:57 +09:00

22 lines
342 B
TypeScript

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);
});