Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Reflect / apply / length.js
blob2b65f5502e44c99a65689610365efb2fc30d13d1
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: 26.1.1
5 description: >
6   Reflect.apply.length value and property descriptor
7 includes: [propertyHelper.js]
8 features: [Reflect]
9 ---*/
11 verifyProperty(Reflect.apply, "length", {
12   value: 3,
13   writable: false,
14   enumerable: false,
15   configurable: true
16 });
18 reportCompare(0, 0);