Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Math / sqrt / prop-desc.js
blobc038ecba0a02c21d34616790d7e8fa8cef96d699
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-math.sqrt
6 description: >
7   "sqrt" property of Math
8 info: |
9   Section 17: Every other data property described in clauses 18 through 26
10   and in Annex B.2 has the attributes { [[Writable]]: true,
11   [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
12 includes: [propertyHelper.js]
13 ---*/
15 verifyNotEnumerable(Math, "sqrt");
16 verifyWritable(Math, "sqrt");
17 verifyConfigurable(Math, "sqrt");
19 reportCompare(0, 0);