mirror of
https://github.com/tc39/test262.git
synced 2025-08-16 15:38:27 +02:00
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.
17 lines
491 B
JavaScript
17 lines
491 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.plaindate.from
|
|
description: Calendar ID is canonicalized
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
[
|
|
"2024-07-02[u-ca=islamicc]",
|
|
{ year: 1445, month: 12, day: 25, calendar: "islamicc" },
|
|
].forEach((arg) => {
|
|
const result = Temporal.PlainDate.from(arg);
|
|
assert.sameValue(result.calendarId, "islamic-civil", "calendar ID is canonicalized");
|
|
});
|