test: increase timeout for ci

This commit is contained in:
Javed Khan 2018-07-10 16:45:03 +05:30
parent 5261339b52
commit 58ab9ba267
No known key found for this signature in database
GPG Key ID: 7E31745B904584E6
2 changed files with 2 additions and 1 deletions

View File

@ -111,7 +111,7 @@ chain.on('disconnect', (entry, block) => {
});
describe('Chain', function() {
this.timeout(45000);
this.timeout(60000);
it('should open chain and miner', async () => {
await chain.open();

View File

@ -103,6 +103,7 @@ describe('Node', function() {
});
it('should mine competing chains', async () => {
this.timeout(20000);
for (let i = 0; i < 10; i++) {
const block1 = await mineBlock(tip1, cb1);
cb1 = block1.txs[0];