test: bump timeout in bitcoind after/before

This commit is contained in:
Braydon Fuller 2016-05-10 19:35:37 -04:00
parent 791047c10d
commit cceb4186d4
1 changed files with 2 additions and 2 deletions

View File

@ -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();