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

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

reportCompare(0, 0);