argument-string-sub-minute-offset.js (846B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2024 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.zoneddatetime.compare 7 description: > 8 ISO strings cannot have sub-minute UTC offset as a time zone identifier 9 features: [Temporal] 10 ---*/ 11 12 const instance = new Temporal.ZonedDateTime(1588371240_000_000_000n, "+01:46"); 13 14 const str = "2021-08-19T17:30:45.123456789-12:12:59.9[-12:12:59.9]"; 15 16 assert.throws( 17 RangeError, 18 () => Temporal.ZonedDateTime.compare(str, instance), 19 `${str} is not a valid ISO string (first argument)` 20 ); 21 assert.throws( 22 RangeError, 23 () => Temporal.ZonedDateTime.compare(instance, str), 24 `${str} is not a valid ISO string (second argument)` 25 ); 26 27 reportCompare(0, 0);