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'); - }); - - }); - }); })();