mirror of
https://github.com/tc39/test262.git
synced 2025-08-18 08:28:27 +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.
19 lines
527 B
JavaScript
19 lines
527 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.duration.compare
|
|
description: Negative zero, as an extended year, fails
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const duration1 = new Temporal.Duration(1);
|
|
const duration2 = new Temporal.Duration(2);
|
|
const bad = "-000000-11-01";
|
|
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.Duration.compare(duration1, duration2, { relativeTo: bad }),
|
|
"Cannot use negative zero as extended year"
|
|
);
|