From cceb4186d46e574589272d5334591d4d05625618 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Tue, 10 May 2016 19:35:37 -0400 Subject: [PATCH] test: bump timeout in bitcoind after/before --- regtest/bitcoind.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regtest/bitcoind.js b/regtest/bitcoind.js index b8cf9bc5..b5caa24c 100644 --- a/regtest/bitcoind.js +++ b/regtest/bitcoind.js @@ -29,7 +29,7 @@ var destKey = bitcore.PrivateKey(); describe('Bitcoind Functionality', function() { before(function(done) { - this.timeout(30000); + this.timeout(60000); // Add the regtest network bitcore.Networks.enableRegtest(); @@ -130,7 +130,7 @@ describe('Bitcoind Functionality', function() { }); after(function(done) { - this.timeout(20000); + this.timeout(60000); bitcoind.node.stopping = true; bitcoind.stop(function(err, result) { done();