Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / String / fromCodePoint / name.js
blob0253149ffbe32587af4af1b3b58e2c08990eba6d
1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 es6id: 21.1.2.2
5 description: >
6   String.fromCodePoint.name
7 info: |
8   String.fromCodePoint ( ...codePoints )
10   17 ECMAScript Standard Built-in Objects
11 includes: [propertyHelper.js]
12 features: [String.fromCodePoint]
13 ---*/
15 verifyProperty(String.fromCodePoint, "name", {
16   value: "fromCodePoint",
17   writable: false,
18   enumerable: false,
19   configurable: true
20 });
22 reportCompare(0, 0);