summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/module_graph/file_tests-b-mod.js1
-rw-r--r--cli/tests/module_graph/file_tests-importremap.ts3
-rw-r--r--cli/tests/module_graph/https_deno.land-x-a-mod.ts1
3 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/module_graph/file_tests-b-mod.js b/cli/tests/module_graph/file_tests-b-mod.js
new file mode 100644
index 000000000..59d168993
--- /dev/null
+++ b/cli/tests/module_graph/file_tests-b-mod.js
@@ -0,0 +1 @@
+export const b = "b";
diff --git a/cli/tests/module_graph/file_tests-importremap.ts b/cli/tests/module_graph/file_tests-importremap.ts
new file mode 100644
index 000000000..17f012673
--- /dev/null
+++ b/cli/tests/module_graph/file_tests-importremap.ts
@@ -0,0 +1,3 @@
+import * as a from "https://deno.land/x/a/mod.ts";
+
+console.log(a);
diff --git a/cli/tests/module_graph/https_deno.land-x-a-mod.ts b/cli/tests/module_graph/https_deno.land-x-a-mod.ts
new file mode 100644
index 000000000..1e334d399
--- /dev/null
+++ b/cli/tests/module_graph/https_deno.land-x-a-mod.ts
@@ -0,0 +1 @@
+export * as b from "../b/mod.js";