summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/modules/dynamic-import-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/modules/dynamic-import-error.js')
-rw-r--r--js/src/jit-test/tests/modules/dynamic-import-error.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/modules/dynamic-import-error.js b/js/src/jit-test/tests/modules/dynamic-import-error.js
new file mode 100644
index 0000000000..98a6af75d0
--- /dev/null
+++ b/js/src/jit-test/tests/modules/dynamic-import-error.js
@@ -0,0 +1,14 @@
+// |jit-test| module
+
+let result = null;
+let error = null;
+let promise = import("nonexistent.js");
+promise.then((ns) => {
+ result = ns;
+}).catch((e) => {
+ error = e;
+});
+
+drainJobQueue();
+assertEq(result, null);
+assertEq(error instanceof Error, true);