summaryrefslogtreecommitdiffstats
path: root/dom/base/test/jsmodules/importmaps/module_sortedImportMap.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/jsmodules/importmaps/module_sortedImportMap.mjs')
-rw-r--r--dom/base/test/jsmodules/importmaps/module_sortedImportMap.mjs6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/base/test/jsmodules/importmaps/module_sortedImportMap.mjs b/dom/base/test/jsmodules/importmaps/module_sortedImportMap.mjs
new file mode 100644
index 0000000000..2b199ca272
--- /dev/null
+++ b/dom/base/test/jsmodules/importmaps/module_sortedImportMap.mjs
@@ -0,0 +1,6 @@
+/* eslint-disable import/no-unresolved */
+import { x } from "scope1/scope2/module_simpleExport.mjs";
+import { x as y } from "scope1/scope2/scope3/scope4/module_simpleExport.mjs";
+
+sorted_result = x;
+sorted_result2 = y;