summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/map/call-with-boolean.js
blob: b9c8ffe85ba0bc1ae39157db27c47325aba75964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.map
description: Array.prototype.map applied to boolean primitive
includes: [compareArray.js]
---*/

assert.compareArray(
  Array.prototype.map.call(true, () => {}),
  [],
  'Array.prototype.map.call(true, () => {}) must return []'
);
assert.compareArray(
  Array.prototype.map.call(false, () => {}),
  [],
  'Array.prototype.map.call(false, () => {}) must return []'
);

reportCompare(0, 0);