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

assert.sameValue(Array.prototype.push.call(true), 0, 'Array.prototype.push.call(true) must return 0');
assert.sameValue(Array.prototype.push.call(false), 0, 'Array.prototype.push.call(false) must return 0');

reportCompare(0, 0);