From a8f46e353f48f057dee9dfd18dfd1530e13d3579 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Mon, 2 Feb 2015 20:05:57 -0500 Subject: [PATCH] Increased the timeout time for integration tests - A busy local peer may need more time to respond - Since the tests are run optionally allowing for more time shouldn't be problematic --- integration/bitcoind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/bitcoind.js b/integration/bitcoind.js index 61f4d12..99e5ff5 100644 --- a/integration/bitcoind.js +++ b/integration/bitcoind.js @@ -34,7 +34,7 @@ var txHash = { // These tests require a running bitcoind instance describe('Integration with ' + network.name + ' bitcoind', function() { - this.timeout(5000); + this.timeout(15000); it('handshakes', function(cb) { var peer = new Peer('localhost', network); peer.once('version', function(m) {