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

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

reportCompare(0, 0);