Skip to content

Commit 5060034

Browse files
committed
Add test for deep loose equal.
1 parent 7728752 commit 5060034

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/deep.js

+8
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,11 @@ test('deep strict equal', function (t) {
77
);
88
t.end();
99
});
10+
11+
test('deep loose equal', function (t) {
12+
t.deepLooseEqual(
13+
[ { a: '3' } ],
14+
[ { a: 3 } ]
15+
);
16+
t.end();
17+
});

0 commit comments

Comments
 (0)