summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Temporal/Calendar/prototype/daysInWeek/branding.js
blob: 6772299fda9a26df2dadbce8567536c23198b096 (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
// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-temporal.calendar.prototype.daysinweek
description: Throw a TypeError if the receiver is invalid
features: [Symbol, Temporal]
---*/

const daysInWeek = Temporal.Calendar.prototype.daysInWeek;

assert.sameValue(typeof daysInWeek, "function");

const args = [new Temporal.PlainDate(2000, 1, 1)];

assert.throws(TypeError, () => daysInWeek.apply(undefined, args), "undefined");
assert.throws(TypeError, () => daysInWeek.apply(null, args), "null");
assert.throws(TypeError, () => daysInWeek.apply(true, args), "true");
assert.throws(TypeError, () => daysInWeek.apply("", args), "empty string");
assert.throws(TypeError, () => daysInWeek.apply(Symbol(), args), "symbol");
assert.throws(TypeError, () => daysInWeek.apply(1, args), "1");
assert.throws(TypeError, () => daysInWeek.apply({}, args), "plain object");
assert.throws(TypeError, () => daysInWeek.apply(Temporal.Calendar, args), "Temporal.Calendar");
assert.throws(TypeError, () => daysInWeek.apply(Temporal.Calendar.prototype, args), "Temporal.Calendar.prototype");

reportCompare(0, 0);