From f7b71797dcc5ca1f1090f88ed7334579ca07b413 Mon Sep 17 00:00:00 2001 From: Rob Gordon Date: Mon, 2 Oct 2023 10:06:27 -0400 Subject: [PATCH] Increase timeout for AI e2e test --- app/e2e/pro.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/e2e/pro.spec.ts b/app/e2e/pro.spec.ts index f63cfd3af..8347247db 100644 --- a/app/e2e/pro.spec.ts +++ b/app/e2e/pro.spec.ts @@ -201,7 +201,7 @@ test("Create chart from ai", async () => { await page.getByRole("button", { name: "Create" }).click(); // expect url to be regex BASE_URL + /u/\d+ await expect(page).toHaveURL(new RegExp(`${BASE_URL}/u/\\d+`), { - timeout: 12000, + timeout: 1000 * 60 * 4, }); });