relativeto-string-plaindatetime.js (715B)
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: The relativeTo option accepts a PlainDateTime-like ISO 8601 string 8 features: [Temporal] 9 ---*/ 10 11 ['2000-01-01', '2000-01-01T00:00', '2000-01-01T00:00[u-ca=iso8601]'].forEach((relativeTo) => { 12 const duration1 = new Temporal.Duration(0, 0, 0, 31); 13 const duration2 = new Temporal.Duration(0, 1); 14 const result = Temporal.Duration.compare(duration1, duration2, { relativeTo }); 15 assert.sameValue(result, 0); 16 }); 17 18 reportCompare(0, 0);