Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Reflect / apply / length.js
blob3499bc3355f506fc5bba1eed0cca7e50cf0e7065
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 assert.sameValue(
12   Reflect.apply.length, 3,
13   'The value of `Reflect.apply.length` is `3`'
16 verifyNotEnumerable(Reflect.apply, 'length');
17 verifyNotWritable(Reflect.apply, 'length');
18 verifyConfigurable(Reflect.apply, 'length');
20 reportCompare(0, 0);