Skip to content

Commit 25d256e

Browse files
authored
chore(site/e2e): increase timeout for waitForPort from 30s to 60s (#16528)
Relates to coder/internal#356 This is just a temporary fix; we may need to remove the hardcoded ports to avoid this flake entirely.
1 parent 6f6b1c2 commit 25d256e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/e2e/helpers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ export const createServer = async (
762762
async function waitForPort(
763763
port: number,
764764
host = "0.0.0.0",
765-
timeout = 30000,
765+
timeout = 60_000,
766766
): Promise<void> {
767767
const start = Date.now();
768768
while (Date.now() - start < timeout) {

0 commit comments

Comments
 (0)