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