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:
parent
e4741dc96e
commit
a8f46e353f
@ -34,7 +34,7 @@ var txHash = {
|
|||||||
// These tests require a running bitcoind instance
|
// These tests require a running bitcoind instance
|
||||||
describe('Integration with ' + network.name + ' bitcoind', function() {
|
describe('Integration with ' + network.name + ' bitcoind', function() {
|
||||||
|
|
||||||
this.timeout(5000);
|
this.timeout(15000);
|
||||||
it('handshakes', function(cb) {
|
it('handshakes', function(cb) {
|
||||||
var peer = new Peer('localhost', network);
|
var peer = new Peer('localhost', network);
|
||||||
peer.once('version', function(m) {
|
peer.once('version', function(m) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user