test262/test/intl402/Temporal/PlainMonthDay/from/canonicalize-calendar.js
Philip Chimento 3f805a1383 Temporal: Test calendar canonicalization in Temporal
Following the upstream ECMA-402 change tested in the previous commit, add
test coverage for the corresponding functionality in Temporal. Fix one
test that was erroneous.
2024-07-04 11:14:16 +02:00

17 lines
494 B
JavaScript

// Copyright (C) 2024 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainmonthday.from
description: Calendar ID is canonicalized
features: [Temporal]
---*/
[
"1972-02-11[u-ca=islamicc]",
{ monthCode: "M12", day: 25, calendar: "islamicc" },
].forEach((arg) => {
const result = Temporal.PlainMonthDay.from(arg);
assert.sameValue(result.calendarId, "islamic-civil", "calendar ID is canonicalized");
});