Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Temporal / PlainMonthDay / from / argument-propertybag-calendar-iso-string.js
blob0f227aa4be47ed5ff8090ede2bab14988bebc479
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
2 // Copyright (C) 2024 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.plainmonthday.from
7 description: An ISO 8601 string can be converted to a calendar ID in Calendar
8 includes: [temporalHelpers.js]
9 features: [Temporal]
10 ---*/
12 for (const calendar of [
13   "2020-01-01",
14   "2020-01-01[u-ca=iso8601]",
15   "2020-01-01T00:00:00.000000000",
16   "2020-01-01T00:00:00.000000000[u-ca=iso8601]",
17   "01-01",
18   "01-01[u-ca=iso8601]",
19   "2020-01",
20   "2020-01[u-ca=iso8601]",
21 ]) {
22   const arg = { monthCode: "M11", day: 18, calendar };
23   const result = Temporal.PlainMonthDay.from(arg);
24   TemporalHelpers.assertPlainMonthDay(result, "M11", 18, `Calendar created from string "${calendar}"`);
25   assert.sameValue(result.getISOFields().calendar, "iso8601", "calendar slot stores a string");
28 reportCompare(0, 0);