Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / BigInt / asIntN / name.js
blobd1a4bc77a70117c1970aab76e3809528f06135d6
1 // Copyright (C) 2017 Josh Wolfe. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 esid: sec-bigint.asintn
5 description: BigInt.asIntN.name descriptor
6 info: |
7   BigInt.asIntN ( bits, bigint )
9   17 ECMAScript Standard Built-in Objects
11 includes: [propertyHelper.js]
12 features: [BigInt]
13 ---*/
15 verifyProperty(BigInt.asIntN, "name", {
16   value: "asIntN",
17   enumerable: false,
18   writable: false,
19   configurable: true
20 });
22 reportCompare(0, 0);