From 423fe5284b81182f1ac6c79b24cc41e5fd75b5e7 Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Thu, 10 Apr 2014 17:57:41 -0300 Subject: [PATCH] Wallet model and testing --- test/test.wallet.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); }); - });*/ + }); });