test262/test/built-ins/isFinite/length.js

16 lines
462 B
JavaScript
Raw Normal View History

2016-06-30 17:57:00 +02:00
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2017-06-29 17:36:13 +02:00
esid: sec-isfinite-number
2016-06-30 17:57:00 +02:00
description: >
The length property of isFinite is 1
includes: [propertyHelper.js]
---*/
assert.sameValue(isFinite.length, 1, "The value of `isFinite.length` is `1`");
verifyNotEnumerable(isFinite, "length");
verifyNotWritable(isFinite, "length");
verifyConfigurable(isFinite, "length");