Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Math / asinh / prop-desc.js
blob7c65e4d1dfc5a3e9f3212da04286c7ed5b465120
1 // Copyright 2015 Microsoft Corporation. All rights reserved.
2 // This code is governed by the license found in the LICENSE file.
4 /*---
5 description: Testing descriptor property of Math.asinh
6 includes: [propertyHelper.js]
7 es6id: 20.2.2.5
8 ---*/
10 verifyNotEnumerable(Math, "asinh");
11 verifyWritable(Math, "asinh");
12 verifyConfigurable(Math, "asinh");
14 reportCompare(0, 0);