summaryrefslogtreecommitdiff
path: root/cli/tests/module_graph/file_tests-a.mjs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-11-10 10:10:41 +1100
committerGitHub <noreply@github.com>2020-11-10 10:10:41 +1100
commitc1fa8fbeba7bb9a35d144af3ae9d483c2baf4c76 (patch)
treeaae4e3af2bfc63e9b69b8db35a4e168bc6f102b1 /cli/tests/module_graph/file_tests-a.mjs
parent568b7d6afb43d7f501d1baf14d5a10470541bba2 (diff)
fix(cli): allow root modules be .mjs/.cjs (#8310)
Fixes #6176
Diffstat (limited to 'cli/tests/module_graph/file_tests-a.mjs')
-rw-r--r--cli/tests/module_graph/file_tests-a.mjs3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/module_graph/file_tests-a.mjs b/cli/tests/module_graph/file_tests-a.mjs
new file mode 100644
index 000000000..72b3a67bc
--- /dev/null
+++ b/cli/tests/module_graph/file_tests-a.mjs
@@ -0,0 +1,3 @@
+import * as b from "./b.ts";
+
+console.log(b);