mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
22 lines
342 B
TypeScript
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);
|
|
});
|