summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/single_compile_with_reload_dyn.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/single_compile_with_reload_dyn.ts')
-rw-r--r--cli/tests/testdata/run/single_compile_with_reload_dyn.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tests/testdata/run/single_compile_with_reload_dyn.ts b/cli/tests/testdata/run/single_compile_with_reload_dyn.ts
deleted file mode 100644
index 6c96fac64..000000000
--- a/cli/tests/testdata/run/single_compile_with_reload_dyn.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { printHello3, returnsFoo2, returnsHi } from "../subdir/mod1.ts";
-
-printHello3();
-
-if (returnsHi() !== "Hi") {
- throw Error("Unexpected");
-}
-
-if (returnsFoo2() !== "Foo") {
- throw Error("Unexpected");
-}