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

assert.compareArray(Array.prototype.slice.call(true), [], 'Array.prototype.slice.call(true) must return []');
assert.compareArray(Array.prototype.slice.call(false), [], 'Array.prototype.slice.call(false) must return []');

reportCompare(0, 0);