summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Iterator/prototype/take/result-is-iterator.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Iterator/prototype/take/result-is-iterator.js')
-rw-r--r--js/src/tests/test262/built-ins/Iterator/prototype/take/result-is-iterator.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Iterator/prototype/take/result-is-iterator.js b/js/src/tests/test262/built-ins/Iterator/prototype/take/result-is-iterator.js
new file mode 100644
index 0000000000..a180a38e42
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Iterator/prototype/take/result-is-iterator.js
@@ -0,0 +1,14 @@
+// |reftest| shell-option(--enable-iterator-helpers) skip-if(!this.hasOwnProperty('Iterator')||!xulRuntime.shell) -- iterator-helpers is not enabled unconditionally, requires shell-options
+// Copyright (C) 2023 Michael Ficarra. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-iteratorprototype.take
+description: >
+ The value of the [[Prototype]] internal slot of the return value of Iterator.prototype.take is the
+ intrinsic object %IteratorHelperPrototype%.
+features: [iterator-helpers]
+---*/
+
+assert((function* () {})().take(0) instanceof Iterator, 'function*(){}().take(0) must return an Iterator');
+
+reportCompare(0, 0);