summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Temporal/PlainDateTime/prototype/until/result-mixed-sign.js
blob: 7287c706b9c14502de2bbfa28ad2bab195c07c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
// 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.prototype.until
description: >
  RangeError when inconsistent custom calendar method causes mixed signs of
  Duration components
features: [Temporal]
---*/

// Test case provided by André Bargull

const cal = new (class extends Temporal.Calendar {
  dateAdd(date, duration, options) {
    return super.dateAdd(date, duration.negated(), options);
  }
})("iso8601");

const one = new Temporal.PlainDateTime(2000, 1, 1, 0, 0, 0, 0, 0, 0, cal);
const two = new Temporal.PlainDateTime(2020, 5, 10, 12, 12, 0, 0, 0, 0, cal);

assert.throws(RangeError, () => one.until(two, {
  largestUnit: "years",
  smallestUnit: "hours"
}));

reportCompare(0, 0);