mirror of
https://github.com/tc39/test262.git
synced 2025-11-28 17:43:19 +01:00
31 lines
980 B
JavaScript
31 lines
980 B
JavaScript
// Copyright (C) 2025 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-iterator.zipkeyed
|
|
description: >
|
|
Basic Iterator.zipkeyed test with "strict" mode.
|
|
includes: [compareArray.js, propertyHelper.js, iteratorZipUtils.js]
|
|
features: [joint-iteration]
|
|
---*/
|
|
|
|
function testSequence(inputs, inputsLabel, minLength, maxLength) {
|
|
function test(options, optionsLabel) {
|
|
var label = optionsLabel + ", " + inputsLabel;
|
|
var it = Iterator.zipKeyed(inputs, options);
|
|
assertZippedKeyed(it, inputs, minLength, label);
|
|
|
|
if (minLength === maxLength) {
|
|
assertIteratorResult(it.next(), undefined, true, label + ": after completion");
|
|
} else {
|
|
assert.throws(TypeError, function() {
|
|
it.next();
|
|
}, label + " should throw after " + minLength + " items.");
|
|
}
|
|
}
|
|
|
|
test({ mode: "strict" }, "options = { mode: 'strict' }");
|
|
}
|
|
|
|
forEachSequenceCombinationKeyed(testSequence);
|