deno/cli/tests/013_dynamic_import.ts

16 lines
281 B
TypeScript
Raw Normal View History

(async (): Promise<void> => {
const { returnsHi, returnsFoo2, printHello3 } = await import(
"./subdir/mod1.ts"
);
printHello3();
if (returnsHi() !== "Hi") {
throw Error("Unexpected");
}
if (returnsFoo2() !== "Foo") {
throw Error("Unexpected");
}
})();