compare-calendar.js (579B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 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.plainyearmonth.compare 7 description: compare() does not take the calendar into account 8 features: [Temporal] 9 ---*/ 10 11 const ym1 = new Temporal.PlainYearMonth(2000, 1, "iso8601", 1); 12 const ym2 = new Temporal.PlainYearMonth(2000, 1, "gregory", 1); 13 assert.sameValue(Temporal.PlainYearMonth.compare(ym1, ym2), 0); 14 15 reportCompare(0, 0);