mirror of
https://github.com/denoland/deno.git
synced 2025-01-07 06:46:59 -05:00
21 lines
314 B
TypeScript
21 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);
|
||
|
});
|