fix: extend app test timeout (#21934)

This commit is contained in:
ケイラ
2026-02-09 15:02:41 -07:00
committed by GitHub
parent 8990a107a0
commit 52af6eac68
+1 -1
View File
@@ -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");