mirror of https://github.com/tc39/test262.git
22 lines
1.1 KiB
JavaScript
22 lines
1.1 KiB
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.compare
|
|
description: relativeTo string accepts an inexact UTC offset rounded to hours and minutes
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const duration1 = new Temporal.Duration(0, 0, 0, 31);
|
|
const duration2 = new Temporal.Duration(0, 1);
|
|
|
|
let relativeTo = "2000-01-01T00:00+00:45[+00:44:30.123456789]";
|
|
assert.sameValue(Temporal.Duration.compare(duration1, duration2, { relativeTo }), 0, "rounded HH:MM is accepted in string");
|
|
|
|
relativeTo = "2000-01-01T00:00+00:44:30[+00:44:30.123456789]";
|
|
assert.throws(RangeError, () => Temporal.Duration.compare(duration1, duration2, { relativeTo }), "no other rounding is accepted for offset");
|
|
|
|
const timeZone = new Temporal.TimeZone("+00:44:30.123456789");
|
|
relativeTo = { year: 2000, month: 1, day: 1, offset: "+00:45", timeZone };
|
|
assert.throws(RangeError, () => Temporal.Duration.compare(duration1, duration2, { relativeTo }), "rounded HH:MM not accepted as offset in property bag");
|