chore(site/e2e): increase timeout for waitForPort from 30s to 60s (#16528)

Relates to https://github.com/coder/internal/issues/356

This is just a temporary fix; we may need to remove the hardcoded ports
to avoid this flake entirely.
This commit is contained in:
Cian Johnston
2025-02-11 18:45:12 +00:00
committed by GitHub
parent 6f6b1c2b94
commit 25d256e7e0
+1 -1
View File
@@ -762,7 +762,7 @@ export const createServer = async (
async function waitForPort(
port: number,
host = "0.0.0.0",
timeout = 30000,
timeout = 60_000,
): Promise<void> {
const start = Date.now();
while (Date.now() - start < timeout) {