summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/reduce/call-with-boolean.js
blob: f7063cd6c95494d305dc97efaea03854cf76a274 (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.reduce
description: Array.prototype.reduce applied to boolean primitive
---*/

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

reportCompare(0, 0);