summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/dynamic-import/import-attributes/2nd-param-get-with-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/expressions/dynamic-import/import-attributes/2nd-param-get-with-error.js')
-rw-r--r--js/src/tests/test262/language/expressions/dynamic-import/import-attributes/2nd-param-get-with-error.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/expressions/dynamic-import/import-attributes/2nd-param-get-with-error.js b/js/src/tests/test262/language/expressions/dynamic-import/import-attributes/2nd-param-get-with-error.js
new file mode 100644
index 0000000000..a1c1775a02
--- /dev/null
+++ b/js/src/tests/test262/language/expressions/dynamic-import/import-attributes/2nd-param-get-with-error.js
@@ -0,0 +1,37 @@
+// |reftest| shell-option(--enable-import-attributes) skip-if(!xulRuntime.shell) async -- requires shell-options
+// Copyright (C) 2021 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+description: Rejects promise when accessing "assert" property throws an error
+esid: sec-import-call-runtime-semantics-evaluation
+info: |
+ 2.1.1.1 EvaluateImportCall ( specifierExpression [ , optionsExpression ] )
+ [...]
+ 6. Let promiseCapability be ! NewPromiseCapability(%Promise%).
+ 7. Let specifierString be ToString(specifier).
+ 8. IfAbruptRejectPromise(specifierString, promiseCapability).
+ 9. Let assertions be a new empty List.
+ 10. If options is not undefined, then
+ a. If Type(options) is not Object,
+ [...]
+ b. Let assertionsObj be Get(options, "assert").
+ c. IfAbruptRejectPromise(assertionsObj, promiseCapability).
+ [...]
+features: [dynamic-import, import-attributes]
+flags: [async]
+---*/
+
+var thrown = new Test262Error();
+var options = {
+ get with() {
+ throw thrown;
+ }
+};
+
+import('./2nd-param_FIXTURE.js', options)
+ .then(function() {
+ throw new Test262Error('Expected an error, but observed no error');
+ }, function(caught) {
+ assert.sameValue(thrown, caught);
+ })
+ .then($DONE, $DONE);