Test PlainYearMonth.prototype.toPlainDate.

This commit is contained in:
Ms2ger 2022-02-01 15:56:12 +01:00 committed by Rick Waldron
parent 51d5cf9a44
commit fddbb4fdf7
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.prototype.toplaindate
description: Basic check for toPlainDate()
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const ym = Temporal.PlainYearMonth.from("2002-01");
TemporalHelpers.assertPlainDate(ym.toPlainDate({ day: 22 }), 2002, 1, "M01", 22);
assert.throws(TypeError, () => ym.toPlainDate({ something: "nothing" }));