You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
329 B
17 lines
329 B
3 years ago
|
var test = require('tape');
|
||
|
var equal = require('../');
|
||
|
|
||
|
test('NaN and 0 values', function (t) {
|
||
|
t.ok(equal(NaN, NaN));
|
||
|
t.notOk(equal(0, NaN));
|
||
|
t.ok(equal(0, 0));
|
||
|
t.notOk(equal(0, 1));
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
|
||
|
test('nested NaN values', function (t) {
|
||
|
t.ok(equal([ NaN, 1, NaN ], [ NaN, 1, NaN ]));
|
||
|
t.end();
|
||
|
});
|