Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ECO-2311] Increase the max wait time for the frontend container being healthy and for the playwright setup timeout #306

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
xbtmatt marked this conversation as resolved.
Show resolved Hide resolved
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 @@ -23,7 +23,7 @@ const LOCAL_ENV_PATH = path.join(getGitRoot(), "src/docker", "example.local.env"
const PRUNE_SCRIPT = path.join(getGitRoot(), "src/docker/utils", "prune.sh");

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

async function isPrimaryContainerReady(name: ContainerName): Promise<boolean> {
Expand Down
Loading