blob: bda7309920c18bf0bfb946414b40f1bb6cee0e66 [file] [log] [blame]
// 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.plaindatetime.prototype.subtract
description: Testing overflow hours (subtracting hours that push one to the next/previous day)
features: [Temporal]
includes: [temporalHelpers.js]
---*/
const dt = new Temporal.PlainDateTime(2019, 10, 29, 10, 46, 38, 271, 986, 102);
const later = new Temporal.PlainDateTime(2020, 5, 31, 23, 12, 38, 271, 986, 102);
TemporalHelpers.assertPlainDateTime(
dt.subtract({ hours: 12 }),
2019, 10, "M10", 28, 22, 46, 38, 271, 986, 102,
"subtract result"
);
TemporalHelpers.assertPlainDateTime(
dt.add({ hours: -12 }),
2019, 10, "M10", 28, 22, 46, 38, 271, 986, 102,
"hour overflow (pushes to previous day)"
);
TemporalHelpers.assertPlainDateTime(
later.subtract({ hours: -2 }),
2020, 6, "M06", 1, 1, 12, 38, 271, 986, 102,
"subtracting a negative amount of hours is equivalent to adding hours"
);