diff options
Diffstat (limited to 'js/src/tests/non262/AsyncIterator/constructor-throw-without-new.js')
-rw-r--r-- | js/src/tests/non262/AsyncIterator/constructor-throw-without-new.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/tests/non262/AsyncIterator/constructor-throw-without-new.js b/js/src/tests/non262/AsyncIterator/constructor-throw-without-new.js new file mode 100644 index 0000000000..699bbed007 --- /dev/null +++ b/js/src/tests/non262/AsyncIterator/constructor-throw-without-new.js @@ -0,0 +1,9 @@ +// |reftest| skip-if(!this.hasOwnProperty('AsyncIterator')) -- AsyncIterator is not enabled unconditionally +/*--- + AsyncIterator constructor throws when called without new. +---*/ + +assertThrowsInstanceOf(() => AsyncIterator(), TypeError); + +if (typeof reportCompare === 'function') + reportCompare(0, 0); |