summaryrefslogtreecommitdiff
path: root/tests/testdata/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/runtime')
-rw-r--r--tests/testdata/runtime/esm_imports_a.js3
-rw-r--r--tests/testdata/runtime/esm_imports_b.js4
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/testdata/runtime/esm_imports_a.js b/tests/testdata/runtime/esm_imports_a.js
new file mode 100644
index 000000000..673cd9aa3
--- /dev/null
+++ b/tests/testdata/runtime/esm_imports_a.js
@@ -0,0 +1,3 @@
+import { retb } from "./esm_imports_b.js";
+
+if (retb() != "b") throw Error();
diff --git a/tests/testdata/runtime/esm_imports_b.js b/tests/testdata/runtime/esm_imports_b.js
new file mode 100644
index 000000000..840121368
--- /dev/null
+++ b/tests/testdata/runtime/esm_imports_b.js
@@ -0,0 +1,4 @@
+// deno-lint-ignore-file
+export function retb() {
+ return "b";
+}