Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / WeakSet / length.js
blob606922e0de24b173dea156f00e3d2839663f6ed1
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-properties-of-the-weakset-constructor
5 description: >
6   The length property of the WeakSet constructor is 0.
7 includes: [propertyHelper.js]
8 ---*/
10 verifyProperty(WeakSet, "length", {
11   value: 0,
12   writable: false,
13   enumerable: false,
14   configurable: true
15 });
17 reportCompare(0, 0);