mirror of https://github.com/tc39/test262.git
16 lines
694 B
JavaScript
16 lines
694 B
JavaScript
// 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.duration.prototype.add
|
|
description: Strings with fractional duration units are treated with the correct sign
|
|
includes: [temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const resultHours = Temporal.Duration.from("-PT24.567890123H");
|
|
TemporalHelpers.assertDuration(resultHours, 0, 0, 0, 0, -24, -34, -4, -404, -442, -800, "negative fractional hours");
|
|
|
|
const resultMinutes = Temporal.Duration.from("-PT1440.567890123M");
|
|
TemporalHelpers.assertDuration(resultMinutes, 0, 0, 0, 0, 0, -1440, -34, -73, -407, -380, "negative fractional minutes");
|