Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / WeakSet / name.js
blobdedd6f4fd0125edb4d5366c3121fcd6d57a3738e
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-weakset-iterable
5 description: >
6     WeakSet ( [ iterable ] )
8     17 ECMAScript Standard Built-in Objects
10 includes: [propertyHelper.js]
11 ---*/
13 assert.sameValue(
14   WeakSet.name, 'WeakSet',
15   'The value of `WeakSet.name` is "WeakSet"'
18 verifyNotEnumerable(WeakSet, 'name');
19 verifyNotWritable(WeakSet, 'name');
20 verifyConfigurable(WeakSet, 'name');
22 reportCompare(0, 0);