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

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

reportCompare(0, 0);