argument-propertybag-calendar-invalid-iso-string.js (980B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2025 Brage Hogstad, University of Bergen. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.plaindatetime.compare 7 description: Invalid ISO string as calendar should throw RangeError 8 features: [Temporal] 9 ---*/ 10 11 const invalidStrings = [ 12 ["", "empty string"], 13 ]; 14 15 for (const [calendar, description] of invalidStrings) { 16 const arg = { year: 1976, monthCode: "M11", day: 18, calendar }; 17 assert.throws( 18 RangeError, 19 () => Temporal.PlainDateTime.compare(arg, new Temporal.PlainDateTime(1976, 11, 18)), 20 `${description} is not a valid calendar ID (first argument)` 21 ); 22 assert.throws( 23 RangeError, 24 () => Temporal.PlainDateTime.compare(new Temporal.PlainDateTime(1976, 11, 18), arg), 25 `${description} is not a valid calendar ID (second argument)` 26 ); 27 } 28 29 reportCompare(0, 0);