argument-propertybag-calendar-invalid-iso-string.js (725B)
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.plainyearmonth.from 7 description: Various invalid ISO string values for calendar in a property bag 8 features: [Temporal] 9 ---*/ 10 11 const invalidStrings = [ 12 ["", "empty string"], 13 ]; 14 15 for (const [calendar, description] of invalidStrings) { 16 const arg = { year: 2019, monthCode: "M11", calendar }; 17 assert.throws( 18 RangeError, 19 () => Temporal.PlainYearMonth.from(arg), 20 `${description} is not a valid calendar ID` 21 ); 22 } 23 24 reportCompare(0, 0);