NaN.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • deep-is/
  • test/
  • NaN.js
  • View
  • Commits
  • Open Download .zip Download (329 B)
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();
});
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command