mirror of
https://github.com/tc39/test262.git
synced 2025-06-25 08:20:28 +02:00
Some of these strings wouldn't have been valid even with a valid year in them (e.g. strings ending in +01:00[UTC]) so fix up the strings that we test. While touching these tests, I took the opportunity to regularize them, and add some missing ones for ISO strings that convert to Calendar and TimeZone.
30 lines
786 B
JavaScript
30 lines
786 B
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.plaintime.compare
|
|
description: Negative zero, as an extended year, fails
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const time = new Temporal.PlainTime(12, 34, 56, 987, 654, 321);
|
|
const invalidStrings = [
|
|
"-000000-12-07T03:24:30",
|
|
"-000000-12-07T03:24:30+01:00",
|
|
"-000000-12-07T03:24:30+00:00[UTC]",
|
|
];
|
|
|
|
invalidStrings.forEach((arg) => {
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainTime.compare(arg, time),
|
|
"Cannot use minus zero as extended year (first argument)"
|
|
);
|
|
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainTime.compare(time, arg),
|
|
"Cannot use minus zero as extended year (second argument)"
|
|
);
|
|
});
|