Skip to content

Commit

Permalink
failing deep strict equal test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Oct 14, 2013
1 parent a086c5f commit d56754a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/deep.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var test = require('../');

test('deep strict equal', function (t) {
t.notDeepEqual(
[ { a: '3' } ],
[ { a: 3 } ]
);
t.end();
});

0 comments on commit d56754a

Please sign in to comment.