mirror of
https://github.com/tc39/test262.git
synced 2025-10-18 22:33:56 +02:00
This copies over the tests that previously existed in the tc39/proposal-temporal repository. For context, see thread starting at: https://github.com/tc39/test262/issues/3002#issuecomment-926234480 In service of https://github.com/tc39/test262/issues/3002
26 lines
1.3 KiB
JavaScript
26 lines
1.3 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: Conversion of ISO date-time strings to Temporal.TimeZone instances
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
let timeZone = "2021-08-19T17:30";
|
|
assert.throws(RangeError, () => Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } }), "bare date-time string is not a time zone");
|
|
assert.throws(RangeError, () => Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } }), "bare date-time string is not a time zone");
|
|
|
|
// The following are all valid strings so should not throw:
|
|
|
|
[
|
|
"2021-08-19T17:30Z",
|
|
"2021-08-19T17:30-07:00",
|
|
"2021-08-19T17:30[America/Vancouver]",
|
|
"2021-08-19T17:30Z[America/Vancouver]",
|
|
"2021-08-19T17:30-07:00[America/Vancouver]",
|
|
].forEach((timeZone) => {
|
|
Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } });
|
|
Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } });
|
|
});
|