From 7b1043eba2512e7dc6118919a79afd9d107e7ab0 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Tue, 11 Feb 2025 15:50:25 +0000 Subject: [PATCH] chore(site/e2e): increase timeout for waitForPort from 30s to 60s --- site/e2e/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/e2e/helpers.ts b/site/e2e/helpers.ts index 49cad287c8dfa..d00d94c71b1eb 100644 --- a/site/e2e/helpers.ts +++ b/site/e2e/helpers.ts @@ -762,7 +762,7 @@ export const createServer = async ( async function waitForPort( port: number, host = "0.0.0.0", - timeout = 30000, + timeout = 60_000, ): Promise { const start = Date.now(); while (Date.now() - start < timeout) {