Test singular units in PlainDate#{add,subtract}.

This commit is contained in:
Ms2ger 2022-01-24 11:28:27 +01:00 committed by Rick Waldron
parent 00b9691218
commit f768a24ab6
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// 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.plaindate.prototype.add
description: Ignores singular properties
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const date = Temporal.PlainDate.from("2019-11-18");
TemporalHelpers.assertPlainDate(date.add({ month: 1, days: 1 }),
2019, 11, "M11", 19);

View File

@ -0,0 +1,13 @@
// 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.plaindate.prototype.subtract
description: Ignores singular properties
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const date = Temporal.PlainDate.from("2019-11-18");
TemporalHelpers.assertPlainDate(date.subtract({ month: 1, days: 1 }),
2019, 11, "M11", 17);