argument-string-invalid.js (774B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 Igalia, S.L. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.plainyearmonth.compare 7 description: An invalid ISO string is never supported 8 includes: [temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 const arg2 = new Temporal.PlainYearMonth(1976, 11); 13 for (const arg of TemporalHelpers.ISO.plainYearMonthStringsInvalid()) { 14 assert.throws(RangeError, () => Temporal.PlainYearMonth.compare(arg, arg2), `"${arg}" is invalid (first argument)`); 15 assert.throws(RangeError, () => Temporal.PlainYearMonth.compare(arg2, arg), `"${arg}" is invalid (second argument)`); 16 } 17 18 reportCompare(0, 0);