Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / getOwnPropertyDescriptors / function-property-descriptor.js
blob2182f1234bd0a7c60e793edbd3619c6bfcddff7a
1 // Copyright (C) 2016 Jordan Harband. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 description: Object.getOwnPropertyDescriptors should be writable, non-enumerable, and configurable
6 esid: sec-object.getownpropertydescriptors
7 author: Jordan Harband
8 includes: [propertyHelper.js]
9 ---*/
11 verifyNotEnumerable(Object, 'getOwnPropertyDescriptors');
12 verifyWritable(Object, 'getOwnPropertyDescriptors');
13 verifyConfigurable(Object, 'getOwnPropertyDescriptors');
15 reportCompare(0, 0);