diff --git a/test/test.wallet.js b/test/test.wallet.js index cecce2dec..2cfb0d91f 100644 --- a/test/test.wallet.js +++ b/test/test.wallet.js @@ -54,25 +54,25 @@ describe('Wallet model', function() { var w = new Wallet(); should.exist(w); }); - /*it('should return array of unspent output', function(done) { + it('should return array of unspent output', function(done) { var w = new Wallet(); w.listUnspent(addresses, function(a) { should.exist(a); done(); }); - });*/ + }); it('should return balance', function () { var w = new Wallet(); var b = w.getBalance(unspent); should.exist(b); b.should.equal(91); }); - /*it('should return txid', function (done) { + it('should return txid', function (done) { var w = new Wallet(); w.sendRawTransaction(rawtx, function(a) { should.exist(a); done(); }); - });*/ + }); });