From 7eca5063d240bc6a604b1e7ef121cbc5f508b7a6 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 16 Dec 2014 03:46:47 -0500 Subject: [PATCH] test(util) rm forEach --- test/lib/util.js | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/test/lib/util.js b/test/lib/util.js index cabd4112..650adba8 100644 --- a/test/lib/util.js +++ b/test/lib/util.js @@ -153,26 +153,6 @@ }); }); - - describe('forEach', function() { - it('should call arrays forEach on any type', function() { - var str = '', - obj = { - 0: 'a', - 1: 'b', - 2: 'c', - length: 3 - }; - - Util.forEach(obj, function(item) { - str += item; - }); - - str.should.be.equal('abc'); - }); - - }); - }); })();