1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-05 22:09:02 -05:00
denoland-deno/cli/tests/testdata/coverage/multisource/test.ts
Yoshiya Hinosawa d68d1e2022
feat(coverage): add html reporter (#21495)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2023-12-08 16:54:52 +09:00

20 lines
314 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);
});
Deno.test("bar", () => {
bar(false);
});
Deno.test("qux", () => {
qux(true);
});
Deno.test("quux", () => {
quux(false);
});