Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Math / sinh / length.js
blob4da8f31e8fc0bfd6a817b5af1566f7b58e0593f4
1 // Copyright 2015 Microsoft Corporation. All rights reserved.
2 // This code is governed by the license found in the LICENSE file.
4 /*---
5 description: length property of Math.sinh
6 es6id: 20.2.2.31
7 info: |
8   Math.sinh ( x )
10   17 ECMAScript Standard Built-in Objects:
11     Every built-in Function object, including constructors, that is not
12     identified as an anonymous function has a name property whose value
13     is a String.
15     Unless otherwise specified, the name property of a built-in Function
16     object, if it exists, has the attributes { [[Writable]]: false,
17     [[Enumerable]]: false, [[Configurable]]: true }.
18 includes: [propertyHelper.js]
19 ---*/
21 verifyProperty(Math.sinh, "length", {
22   value: 1,
23   writable: false,
24   enumerable: false,
25   configurable: true
26 });
28 reportCompare(0, 0);