summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/indexOf/call-with-boolean.js
blob: b39ac9944b845ebc8b1e42e4ab2fe4147462ec8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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.indexOf
description: Array.prototype.indexOf applied to boolean primitive
---*/

assert.sameValue(Array.prototype.indexOf.call(true), -1, 'Array.prototype.indexOf.call(true) must return -1');
assert.sameValue(Array.prototype.indexOf.call(false), -1, 'Array.prototype.indexOf.call(false) must return -1');

reportCompare(0, 0);