summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Infinity/S15.1.1.2_A1.js
blob: 5d590b58c084759e5e1600981dc1614339e841f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: The initial value of Infinity is Number.POSITIVE_INFINITY
es5id: 15.1.1.2_A1
description: Use typeof, isNaN, isFinite
---*/
assert.sameValue(typeof(Infinity), "number", 'The value of `typeof(Infinity)` is expected to be "number"');
assert.sameValue(isFinite(Infinity), false, 'isFinite(Infinity) must return false');
assert.sameValue(isNaN(Infinity), false, 'isNaN(Infinity) must return false');

assert.sameValue(
  Infinity,
  Number.POSITIVE_INFINITY,
  'The value of Infinity is expected to equal the value of Number.POSITIVE_INFINITY'
);

reportCompare(0, 0);