Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Array / prop-desc.js
blob8a219660fc230e1ab6ea206a06d7f4784e39e340
1 // Copyright (C) 2019 Aleksey Shvayka. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 esid: sec-array-constructor
5 description: >
6   Property descriptor of Array
7 info: |
8   22.1.1 The Array Constructor
10   * is the initial value of the Array property of the global object.
12   17 ECMAScript Standard Built-in Objects
14   Every other data property described in clauses 18 through 26 and in Annex B.2
15   has the attributes { [[Writable]]: true, [[Enumerable]]: false,
16   [[Configurable]]: true } unless otherwise specified.
17 includes: [propertyHelper.js]
18 ---*/
20 verifyProperty(this, 'Array', {
21   value: Array,
22   writable: true,
23   enumerable: false,
24   configurable: true,
25 });
27 reportCompare(0, 0);