Skip to content

Commit

Permalink
chore(agoric-cli): raise integration test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Aug 1, 2020
1 parent bb80fb2 commit e1cb6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/agoric-cli/integration-tests/test-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ test('workflow', async t => {
]);
finalizers.push(() => pkill(deployP.cp, 'SIGINT'));

timeout = setTimeout(deployResult.resolve, 30000, 'timeout');
timeout = setTimeout(deployResult.resolve, 60000, 'timeout');
const done = await Promise.race([deployResult.promise, deployP]);
t.equals(done, 0, `deploy successful before timeout`);
clearTimeout(timeout);
Expand Down

0 comments on commit e1cb6f2

Please sign in to comment.