Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperties / 15.2.3.7-6-a-272.js
blob8bff8fee161ba628ac9346a924481365a16bd85f
1 // Copyright (c) 2012 Ecma International.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es5id: 15.2.3.7-6-a-272
6 description: >
7     Object.defineProperties - 'O' is an Array, 'P' is generic own data
8     property of 'O', test TypeError is thrown when updating the
9     [[Enumerable]] attribute value of 'P' which is defined as
10     non-configurable (15.4.5.1 step 5)
11 includes: [propertyHelper.js]
12 ---*/
15 var arr = [];
17 Object.defineProperty(arr, "property", {
18   value: 12,
19   enumerable: false
20 });
22 try {
23   Object.defineProperties(arr, {
24     "property": {
25       enumerable: true
26     }
27   });
28   throw new Test262Error("Expected an exception.");
29 } catch (e) {
30   if (!(e instanceof TypeError)) {
31     throw new Test262Error("Expected TypeError, got " + e);
32   }
35 verifyProperty(arr, "property", {
36   value: 12,
37   writable: false,
38   enumerable: false,
39   configurable: false,
40 });
42 reportCompare(0, 0);