summaryrefslogtreecommitdiff
path: root/tests/testdata/run/ts_import_from_js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/run/ts_import_from_js')
-rw-r--r--tests/testdata/run/ts_import_from_js/deps.js2
-rw-r--r--tests/testdata/run/ts_import_from_js/main.js3
-rw-r--r--tests/testdata/run/ts_import_from_js/main.out3
3 files changed, 0 insertions, 8 deletions
diff --git a/tests/testdata/run/ts_import_from_js/deps.js b/tests/testdata/run/ts_import_from_js/deps.js
deleted file mode 100644
index 746b5cf6b..000000000
--- a/tests/testdata/run/ts_import_from_js/deps.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import "../005_more_imports.ts";
-export { printHello } from "http://localhost:4545/subdir/mod2.ts";
diff --git a/tests/testdata/run/ts_import_from_js/main.js b/tests/testdata/run/ts_import_from_js/main.js
deleted file mode 100644
index 32d6c29a1..000000000
--- a/tests/testdata/run/ts_import_from_js/main.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import { printHello } from "./deps.js";
-printHello();
-console.log("success");
diff --git a/tests/testdata/run/ts_import_from_js/main.out b/tests/testdata/run/ts_import_from_js/main.out
deleted file mode 100644
index e1d7a869f..000000000
--- a/tests/testdata/run/ts_import_from_js/main.out
+++ /dev/null
@@ -1,3 +0,0 @@
-Hello
-Hello
-success