Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Array / of / length.js
blobf77c48b768c59fa133beb95b7cbfb72098702f01
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 esid: sec-array.of
5 description: >
6   Array.of.length value and property descriptor
7 info: |
8   Array.of ( ...items )
10   The length property of the of function is 0.
11 includes: [propertyHelper.js]
12 ---*/
14 assert.sameValue(
15   Array.of.length, 0,
16   'The value of Array.of.length is expected to be 0'
19 verifyNotEnumerable(Array.of, 'length');
20 verifyNotWritable(Array.of, 'length');
21 verifyConfigurable(Array.of, 'length');
23 reportCompare(0, 0);