mirror of
https://github.com/tc39/test262.git
synced 2025-06-25 00:10:30 +02:00
These are the test adjustments corresponding to the normative PR https://github.com/tc39/ecma262/pull/3334 which reached consensus at the June 2024 TC39 meeting.
28 lines
753 B
JavaScript
28 lines
753 B
JavaScript
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-temporal.plaindatetime.compare
|
|
description: Non-ASCII minus sign is not acceptable
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const invalidStrings = [
|
|
"1976-11-18T15:23:30.12\u221202:00",
|
|
"\u2212009999-11-18T15:23:30.12",
|
|
];
|
|
|
|
invalidStrings.forEach((arg) => {
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainDateTime.compare(arg, new Temporal.PlainDateTime(1976, 11, 18)),
|
|
`variant minus sign: ${arg} (first argument)`
|
|
);
|
|
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainDateTime.compare(new Temporal.PlainDateTime(1976, 11, 18), arg),
|
|
`variant minus sign: ${arg} (second argument)`
|
|
);
|
|
});
|