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