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-623.js
blobb314bc2c5084e5756d5fa9e299d64f0446b1b478
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-623
6 description: >
7     ES5 Attributes - all attributes in Date.prototype.toISOString are
8     correct
9 includes: [propertyHelper.js]
10 ---*/
12 verifyProperty(Date.prototype, "toISOString", {
13   writable: true,
14   enumerable: false,
15   configurable: true,
16 });
18 reportCompare(0, 0);