From 52af6eac68f2d5e267f03a30e83646f8e6375922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B1=E3=82=A4=E3=83=A9?= Date: Mon, 9 Feb 2026 15:02:41 -0700 Subject: [PATCH] fix: extend app test timeout (#21934) --- site/e2e/tests/app.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/e2e/tests/app.spec.ts b/site/e2e/tests/app.spec.ts index 3433df6e32..0d933c833f 100644 --- a/site/e2e/tests/app.spec.ts +++ b/site/e2e/tests/app.spec.ts @@ -62,7 +62,7 @@ test("app", async ({ context, page }) => { const agent = await startAgent(page, token); // Wait for the web terminal to open in a new tab - const pagePromise = context.waitForEvent("page"); + const pagePromise = context.waitForEvent("page", { timeout: 10_000 }); await page.getByText(appName).click({ timeout: 10_000 }); const app = await pagePromise; await app.waitForLoadState("domcontentloaded");