Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / isNaN / length.js
blobf323904d000d5aa971e13c7b27186b4bbe214bf6
1 // Copyright (C) 2016 The V8 Project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-isnan-number
6 description: >
7   The length property of isNaN is 1
8 includes: [propertyHelper.js]
9 ---*/
11 verifyProperty(isNaN, "length", {
12   value: 1,
13   writable: false,
14   enumerable: false,
15   configurable: true
16 });
18 reportCompare(0, 0);