1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 06:46:59 -05:00
denoland-deno/cli/tests/testdata/coverage/multisource/test.ts

21 lines
314 B
TypeScript
Raw Normal View History

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