summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Temporal/Calendar/argument-wrong-type.js
blob: c78fd3f8cc5d7331ebf2dd69f2be363fc94ea31d (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
30
31
32
33
// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-temporal.calendar
description: RangeError thrown when constructor invoked with the wrong type
features: [Temporal]
---*/

const tests = [
  [null, "null"],
  [true, "boolean"],
  ["", "empty string"],
  [1, "number that doesn't convert to a valid ISO string"],
  [19761118, "number that would convert to a valid ISO string in other contexts"],
  [1n, "bigint"],
  [Symbol(), "symbol"],
  [{}, "object not implementing any protocol"],
  [new Temporal.Calendar("iso8601"), "calendar instance"],
  [new Temporal.TimeZone("UTC"), "time zone instance"],
  [Temporal.ZonedDateTime.from("2020-01-01T00:00Z[UTC]"), "ZonedDateTime instance"],
];

for (const [arg, description] of tests) {
  assert.throws(
    typeof (arg) === "string" ? RangeError : TypeError,
    () => new Temporal.Calendar(arg),
    `${description} is not accepted by this constructor`
  );
}

reportCompare(0, 0);