Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / BigInt / prop-desc.js
blob5e9500e45fb78e7e94ec46f837e92178648c7e07
1 // Copyright (C) 2017 The V8 Project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-bigint-constructor
6 description: >
7   Property descriptor of BigInt
8 info: |
9   The BigInt Object
11   ECMAScript Standard Built-in Objects:
13   Every other data property described in clauses 18 through 26 and in Annex B.2
14   has the attributes { [[Writable]]: true, [[Enumerable]]: false,
15   [[Configurable]]: true } unless otherwise specified.
16 includes: [propertyHelper.js]
17 features: [BigInt]
18 ---*/
20 verifyProperty(this, "BigInt", {
21   enumerable: false,
22   writable: true,
23   configurable: true
24 });
26 reportCompare(0, 0);