mirror of https://github.com/tc39/test262.git
36 lines
1.1 KiB
JavaScript
36 lines
1.1 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.zoneddatetime.compare
|
|
description: Casts first and second arguments.
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
/*
|
|
const zdt1 = Temporal.ZonedDateTime.from("1976-11-18T15:23:30.123456789+01:00[+01:00]");
|
|
const zdt2 = Temporal.ZonedDateTime.from("2019-10-29T10:46:38.271986102+01:00[+01:00]");
|
|
*/
|
|
const zdt1 = new Temporal.ZonedDateTime(217175010123456789n, "+01:00");
|
|
const zdt2 = new Temporal.ZonedDateTime(1572342398271986102n, "+01:00");
|
|
|
|
// casts first argument
|
|
assert.sameValue(Temporal.ZonedDateTime.compare({
|
|
year: 1976,
|
|
month: 11,
|
|
day: 18,
|
|
hour: 15,
|
|
timeZone: "+01:00"
|
|
}, zdt2), -1);
|
|
assert.sameValue(Temporal.ZonedDateTime.compare("1976-11-18T15:23:30.123456789+01:00[+01:00]", zdt2), -1);
|
|
|
|
// casts second argument
|
|
assert.sameValue(Temporal.ZonedDateTime.compare(zdt1, {
|
|
year: 2019,
|
|
month: 10,
|
|
day: 29,
|
|
hour: 10,
|
|
timeZone: "+01:00"
|
|
}), -1);
|
|
assert.sameValue(Temporal.ZonedDateTime.compare(zdt1, "2019-10-29T10:46:38.271986102+01:00[+01:00]"), -1);
|