Jesse Alama 7d82f8ac63 Add tests for invalid extended year "-000000"
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.
2022-02-01 17:59:02 -05:00

22 lines
619 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.plaindate.compare
features: [Temporal]
---*/
const instance = new Temporal.PlainDate(2000, 5, 2);
const bad = "-000000-08-24";
assert.throws(RangeError,
() => Temporal.PlainDate.compare(bad, instance),
"Minus zero is an invalid extended year (first argument)"
);
assert.throws(RangeError,
() => Temporal.PlainDate.compare(instance, bad),
"Minus zero is an invalid extended year (second argument)"
);