mirror of https://github.com/tc39/test262.git
42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
// 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.duration.compare
|
|
description: relativeTo with hours.
|
|
includes: [temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const oneDay = new Temporal.Duration(0, 0, 0, 1);
|
|
const hours24 = new Temporal.Duration(0, 0, 0, 0, 24);
|
|
assert.sameValue(Temporal.Duration.compare(oneDay, hours24),
|
|
0,
|
|
"relativeTo not required for days");
|
|
assert.sameValue(
|
|
Temporal.Duration.compare(oneDay, hours24, { relativeTo: Temporal.PlainDate.from("2017-01-01") }),
|
|
0,
|
|
"relativeTo does not affect days if PlainDate");
|
|
assert.sameValue(Temporal.Duration.compare(oneDay, hours24, { relativeTo: "2019-11-03" }),
|
|
0,
|
|
"casts relativeTo to PlainDate from string");
|
|
assert.sameValue(Temporal.Duration.compare(oneDay, hours24, { relativeTo: { year: 2019, month: 11, day: 3 } }),
|
|
0,
|
|
"casts relativeTo to PlainDate from object");
|
|
|
|
const timeZone = TemporalHelpers.springForwardFallBackTimeZone();
|
|
assert.sameValue(
|
|
Temporal.Duration.compare(oneDay, hours24, { relativeTo: new Temporal.ZonedDateTime(0n, timeZone) }),
|
|
0,
|
|
'relativeTo does not affect days if ZonedDateTime, and duration encompasses no DST change');
|
|
assert.sameValue(
|
|
Temporal.Duration.compare(oneDay, hours24, { relativeTo: new Temporal.ZonedDateTime(972802800_000_000_000n, timeZone) }),
|
|
1,
|
|
'relativeTo does affect days if ZonedDateTime, and duration encompasses DST change');
|
|
assert.sameValue(
|
|
Temporal.Duration.compare(oneDay, hours24, {
|
|
relativeTo: { year: 2000, month: 10, day: 29, timeZone }
|
|
}),
|
|
1,
|
|
'casts relativeTo to ZonedDateTime from object');
|