argument-string-with-utc-designator.js (978B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2021 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.plaintime.compare 7 description: RangeError thrown if a string with UTC designator is used as a PlainTime 8 features: [Temporal, arrow-function] 9 ---*/ 10 11 const invalidStrings = [ 12 "2019-10-01T09:00:00Z", 13 "2019-10-01T09:00:00Z[UTC]", 14 "09:00:00Z[UTC]", 15 "09:00:00Z", 16 ]; 17 const plainTime = new Temporal.PlainTime(); 18 invalidStrings.forEach((arg) => { 19 assert.throws( 20 RangeError, 21 () => Temporal.PlainTime.compare(arg, plainTime), 22 "String with UTC designator should not be valid as a PlainTime (first argument)" 23 ); 24 assert.throws( 25 RangeError, 26 () => Temporal.PlainTime.compare(plainTime, arg), 27 "String with UTC designator should not be valid as a PlainTime (second argument)" 28 ); 29 }); 30 31 reportCompare(0, 0);