Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / intl402 / Temporal / PlainYearMonth / from / argument-object.js
bloba8bf0eb747cc79986159d212f76e156d23c074a8
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.
5 /*---
6 esid: sec-temporal.plainyearmonth.from
7 description: An object argument
8 includes: [temporalHelpers.js]
9 features: [Temporal]
10 ---*/
12 const monthDayItem = { calendar: "gregory", era: "ce", eraYear: 2019, month: 11, get day() { throw new Test262Error("should not read the day property") } };
13 TemporalHelpers.assertPlainYearMonth(Temporal.PlainYearMonth.from(monthDayItem),
14   2019, 11, "M11", "month with day", "ce", 2019);
16 const monthCodeDayItem = { calendar: "gregory", era: "ce", eraYear: 2019, monthCode: "M11", get day() { throw new Test262Error("should not read the day property") } };
17 TemporalHelpers.assertPlainYearMonth(Temporal.PlainYearMonth.from(monthCodeDayItem),
18   2019, 11, "M11", "monthCode with day", "ce", 2019);
20 reportCompare(0, 0);