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