Skip to content

Commit

Permalink
Merge pull request #524 from tuxcanfly/fix-circleci-tests
Browse files Browse the repository at this point in the history
test: increase timeout for ci
  • Loading branch information
tuxcanfly authored Jul 10, 2018
2 parents 5261339 + 58ab9ba commit 2eb42d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/chain-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
1 change: 1 addition & 0 deletions test/node-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 2eb42d6

Please sign in to comment.