summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/getOwnPropertyDescriptors/function-property-descriptor.js
blob: 9a94c083d78bb937561e5e5e5d4aa81cac8c6c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2016 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Object.getOwnPropertyDescriptors should be writable, non-enumerable, and configurable
id: pending
author: Jordan Harband
includes: [propertyHelper.js]
---*/

verifyNotEnumerable(Object, 'getOwnPropertyDescriptors');
verifyWritable(Object, 'getOwnPropertyDescriptors');
verifyConfigurable(Object, 'getOwnPropertyDescriptors');