Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Array / constructor.js
blob294e63ad80818b5e3bd6a426d99aa58f6bd3e1d1
1 // Copyright (C) 2017 Leo Balter. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-array-constructor-array
6 description: >
7   The Array constructor is a built-in function
8 ---*/
10 assert.sameValue(typeof Array, 'function', 'The value of `typeof Array` is expected to be "function"');
12 reportCompare(0, 0);