summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/includes/not-a-constructor.js
blob: e60846e70a4c22af0df439d9d9024fd586f54fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
  Tuple.prototype.includes does not implement [[Construct]], is not new-able
---*/

assertEq(
  isConstructor(Tuple.prototype.includes),
  false,
  'isConstructor(Tuple.prototype.includes) must return false'
);

assertThrowsInstanceOf(() => new Tuple.prototype.includes(1),
		       TypeError, '`new Tuple.prototype.includes(1)` throws TypeError');


reportCompare(0, 0);