Removed console.log

This commit is contained in:
Gustavo Cortez 2014-06-04 11:25:58 -03:00
parent dbdd3c3500
commit 72b4d75e78
1 changed files with 1 additions and 3 deletions

View File

@ -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);
});
});
});