mirror of
https://github.com/tc39/test262.git
synced 2025-06-25 00:10:30 +02:00
Codecov showed that PlainTime strings like "09:00:00Z[UTC]" or "09:00:00Z" were not being tested. This commit fills that gap. It'd probably be good to make similar changes for other Plain* types, but Codecov didn't complain about them so they may be covered via other tests so it was less urgent.
29 lines
858 B
JavaScript
29 lines
858 B
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.plaintime.compare
|
|
description: RangeError thrown if a string with UTC designator is used as a PlainTime
|
|
features: [Temporal, arrow-function]
|
|
---*/
|
|
|
|
const invalidStrings = [
|
|
"2019-10-01T09:00:00Z",
|
|
"2019-10-01T09:00:00Z[UTC]",
|
|
"09:00:00Z[UTC]",
|
|
"09:00:00Z",
|
|
];
|
|
const plainTime = new Temporal.PlainTime();
|
|
invalidStrings.forEach((arg) => {
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainTime.compare(arg, plainTime),
|
|
"String with UTC designator should not be valid as a PlainTime (first argument)"
|
|
);
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainTime.compare(plainTime, arg),
|
|
"String with UTC designator should not be valid as a PlainTime (second argument)"
|
|
);
|
|
});
|