mirror of
https://github.com/tc39/test262.git
synced 2025-08-15 23:18:23 +02:00
13 lines
372 B
JavaScript
13 lines
372 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.calendar.id, "gregory");
|