Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperty / 15.2.3.6-4-617.js
bloba2ba3ab54054fca90802c5a9cd4cb8d9777a715c
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.6-4-617
6 description: ES5 Attributes - all attributes in Array.prototype.map are correct
7 includes: [propertyHelper.js]
8 ---*/
10 verifyProperty(Array.prototype, "map", {
11   writable: true,
12   enumerable: false,
13   configurable: true,
14 });
16 reportCompare(0, 0);