From b2cfeb95da6982f8bc2e676231820a3a47385db3 Mon Sep 17 00:00:00 2001 From: James Halliday Date: Fri, 7 Dec 2012 20:13:36 -0800 Subject: [PATCH] deepEquals comparing nulls seems to break in ie6-8 --- test/cmp.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/cmp.js b/test/cmp.js index d5c828c..3071013 100644 --- a/test/cmp.js +++ b/test/cmp.js @@ -16,3 +16,8 @@ test('not equal', function (t) { )); t.end(); }); + +test('nested nulls', function (t) { + t.ok(equal([ null, null, null ], [ null, null, null ])); + t.end(); +});