descriptor.js (374B)
1 // Copyright 2017 Lyza Danger Gardner. All rights reserved. 2 // This code is governed by the license found in the LICENSE file. 3 4 /*--- 5 description: Testing descriptor property of Array.isArray 6 includes: [propertyHelper.js] 7 esid: sec-array.isarray 8 ---*/ 9 10 verifyProperty(Array, "isArray", { 11 writable: true, 12 enumerable: false, 13 configurable: true 14 }); 15 16 reportCompare(0, 0);