mirror of
https://github.com/tc39/test262.git
synced 2025-07-31 01:44:54 +02:00
https://github.com/tc39/proposal-temporal/issues/1753 records the consensus reached at the October 2021 TC39 meeting to disallow "-000000" as an extended year, both in Date.parse and Temporal. This adds tests for the Temporal part of that.
22 lines
629 B
JavaScript
22 lines
629 B
JavaScript
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: Negative zero, as an extended year, fails
|
|
esid: sec-temporal.plaindatetime.compare
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const ok = new Temporal.PlainDateTime(2000, 5, 2, 15);
|
|
const bad = "-000000-12-07T03:24:30";
|
|
|
|
assert.throws(RangeError,
|
|
() => Temporal.PlainDateTime.compare(bad,ok),
|
|
"Cannot use minus zero as extended year (first argument)"
|
|
);
|
|
|
|
assert.throws(RangeError,
|
|
() => Temporal.PlainDateTime.compare(ok, bad),
|
|
"Cannot use minus zero as extended year (second argument)"
|
|
);
|