summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/findIndex/call-with-boolean.js
blob: fe775ec2f439422fe69175688f5426576a8461fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2020 Rick Waldron.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.findIndex
description: Array.prototype.findIndex applied to boolean primitive
---*/

assert.sameValue(
  Array.prototype.findIndex.call(true, () => {}),
  -1,
  'Array.prototype.findIndex.call(true, () => {}) must return -1'
);
assert.sameValue(
  Array.prototype.findIndex.call(false, () => {}),
  -1,
  'Array.prototype.findIndex.call(false, () => {}) must return -1'
);

reportCompare(0, 0);