mirror of
https://github.com/tc39/test262.git
synced 2025-11-19 05:09:46 +01:00
This is the replacement of the old API with the new API. Semantics will be corrected in the following commit. Normative PR: https://github.com/tc39/proposal-temporal/pull/2482
13 lines
371 B
JavaScript
13 lines
371 B
JavaScript
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-temporal.now.plaindate
|
|
description: String calendar argument
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const date = Temporal.Now.plainDate("gregory");
|
|
assert(date instanceof Temporal.PlainDate);
|
|
assert.sameValue(date.calendarId, "gregory");
|