relativeto-string-zoneddatetime-wrong-offset.js (654B)
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.duration.compare 7 description: Throws if a ZonedDateTime-like relativeTo string has the wrong UTC offset 8 features: [Temporal] 9 ---*/ 10 11 const duration1 = new Temporal.Duration(0, 0, 0, 31); 12 const duration2 = new Temporal.Duration(0, 1); 13 const relativeTo = "2000-01-01T00:00+05:30[UTC]"; 14 assert.throws(RangeError, () => Temporal.Duration.compare(duration1, duration2, { relativeTo })); 15 16 reportCompare(0, 0);