test262/test/built-ins/BigInt/parseInt/prop-desc.js

20 lines
466 B
JavaScript

// Copyright (C) 2017 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-bigint-parseint-string-radix
description: BigInt.parseInt property descriptor
info: >
BigInt.parseInt ( string, radix )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [BigInt]
---*/
verifyProperty(BigInt, "parseInt", {
writable: true,
enumerable: false,
configurable: true
});