Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / String / prototype / padEnd / function-length.js
blob267e983c0cb77d2e1959be8be200723971b7bb21
1 // Copyright (C) 2016 Jordan Harband. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-string.prototype.padend
6 description: String#padEnd should have length 1
7 author: Jordan Harband
8 includes: [propertyHelper.js]
9 ---*/
11 verifyProperty(String.prototype.padEnd, "length", {
12   value: 1,
13   writable: false,
14   enumerable: false,
15   configurable: true
16 });
18 reportCompare(0, 0);