Skip to content

Commit

Permalink
Add test for deep loose equal.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanlong committed Mar 24, 2016
1 parent 7728752 commit 5060034
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/deep.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@ test('deep strict equal', function (t) {
);
t.end();
});

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

0 comments on commit 5060034

Please sign in to comment.