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
This commit is contained in:
Braydon Fuller 2015-02-02 20:05:57 -05:00
parent e4741dc96e
commit a8f46e353f

View File

@ -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) {