mirror of
https://github.com/denoland/deno.git
synced 2025-01-05 22:09:02 -05:00
d68d1e2022
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
20 lines
314 B
TypeScript
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);
|
|
});
|