From fddbb4fdf7046c6f56c809a9c8094f27c731053e Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Tue, 1 Feb 2022 15:56:12 +0100 Subject: [PATCH] Test PlainYearMonth.prototype.toPlainDate. --- .../PlainYearMonth/prototype/toPlainDate/basic.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/built-ins/Temporal/PlainYearMonth/prototype/toPlainDate/basic.js diff --git a/test/built-ins/Temporal/PlainYearMonth/prototype/toPlainDate/basic.js b/test/built-ins/Temporal/PlainYearMonth/prototype/toPlainDate/basic.js new file mode 100644 index 0000000000..9ac4dfe71b --- /dev/null +++ b/test/built-ins/Temporal/PlainYearMonth/prototype/toPlainDate/basic.js @@ -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" }));