Skip to content

Commit

Permalink
Increase the max wait time for the frontend container being healthyan…
Browse files Browse the repository at this point in the history
…d the Playwright setup
  • Loading branch information
xbtmatt committed Oct 17, 2024
1 parent 79dc3eb commit 61069d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/typescript/frontend/tests/e2e/global.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { DockerTestHarness } from "../../../sdk/src/utils/test/docker/docker-tes

setup("setup the Docker containers", async ({}) => {
// Five minute timeout.
setup.setTimeout(300_000);
setup.setTimeout(600_000);
const startDockerServices = process.env.APTOS_NETWORK === "local";
if (startDockerServices) {
await DockerTestHarness.run(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const isDataNotCorrupted = (state?: ContainerState): boolean | undefined => {
return true;
};

const MAX_WAIT_TIME_SECONDS = 240;
const MAX_WAIT_TIME_SECONDS = 600;
const TMP_PID_FILE_PATH = path.join(os.tmpdir(), "emojicoin-e2e-process-id");

export class DockerTestHarness {
Expand Down

0 comments on commit 61069d1

Please sign in to comment.