From 72b4d75e78c1fbb5e4b475f6f43fbe4d32751a6e Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Wed, 4 Jun 2014 11:25:58 -0300 Subject: [PATCH] Removed console.log --- test/unit/controllers/controllersSpec.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/unit/controllers/controllersSpec.js b/test/unit/controllers/controllersSpec.js index f437c1ed8..0209a1cbc 100644 --- a/test/unit/controllers/controllersSpec.js +++ b/test/unit/controllers/controllersSpec.js @@ -43,11 +43,9 @@ describe("Unit: Testing Controllers", function() { expect(scope.loading).equal(false); }); - it('should return an empty array of tx', function() { + it('should return an empty array of tx from insight', function() { scope.getTransactions(); expect(scope.blockchain_txs).to.be.empty; - console.log('asdfasdf', scope.blockchain_txs); }); - }); });