1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/tests/specs/info_tests/json_file/json_output/main.ts
2024-09-16 17:08:00 +00:00

11 lines
205 B
TypeScript

import { printHello3, returnsFoo2, returnsHi } from "../mod1.ts";
printHello3();
if (returnsHi() !== "Hi") {
throw Error("Unexpected");
}
if (returnsFoo2() !== "Foo") {
throw Error("Unexpected");
}