Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Symbol / length.js
blobf50c96667d5f66099f66500899dd267ebf4dea77
1 // Copyright (C) 2017 Aleksey Shvayka. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-symbol-constructor
6 description: >
7   Properties of the Symbol Constructor
9   Besides the length property (whose value is 0)
11 includes: [propertyHelper.js]
12 features: [Symbol]
13 ---*/
15 assert.sameValue(Symbol.length, 0, "The value of `Symbol.length` is `0`");
17 verifyNotEnumerable(Symbol, "length");
18 verifyNotWritable(Symbol, "length");
19 verifyConfigurable(Symbol, "length");
21 reportCompare(0, 0);