Skip to content

Commit

Permalink
increase timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
wemeetagain committed Dec 5, 2022
1 parent 9ec94f9 commit b28a7b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cli/test/e2e/runDevCmd.test.ts
Expand Up @@ -5,7 +5,7 @@ import {describeCliTest} from "../utils/childprocRunner.js";
import {itDone} from "../utils/runUtils.js";

describeCliTest("Run dev command", function ({spawnCli}) {
this.timeout(60_000);
this.timeout(120_000);
itDone("Run dev command with no --dataDir until beacon api is listening", async function (done) {
const beaconPort = 39011;

Expand Down
6 changes: 3 additions & 3 deletions packages/cli/test/e2e/voluntaryExit.test.ts
Expand Up @@ -8,7 +8,7 @@ import {describeCliTest, execCli} from "../utils/childprocRunner.js";
import {itDone} from "../utils/runUtils.js";

describeCliTest("voluntaryExit cmd", function ({spawnCli}) {
this.timeout("60s");
this.timeout("120s");

itDone("Perform a voluntary exit", async function (done) {
const restPort = 9596;
Expand Down Expand Up @@ -42,7 +42,7 @@ describeCliTest("voluntaryExit cmd", function ({spawnCli}) {
const head = await client.beacon.getBlockHeader("head");
if (head.data.header.message.slot < 1) throw Error("pre-genesis");
},
{retryDelay: 2000, retries: 20}
{retryDelay: 2000, retries: 40}
);

const indexesToExit = [0, 1];
Expand Down Expand Up @@ -76,7 +76,7 @@ describeCliTest("voluntaryExit cmd", function ({spawnCli}) {
console.log(`Confirmed validator ${pubkey} = ${data.status}`);
}
},
{retryDelay: 1000, retries: 20}
{retryDelay: 2000, retries: 40}
);
}
});
Expand Down

0 comments on commit b28a7b3

Please sign in to comment.