Skip to content

Commit

Permalink
Increase timeout for AI e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-gordon committed Oct 2, 2023
1 parent 0040a14 commit f7b7179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/e2e/pro.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
});

Expand Down

0 comments on commit f7b7179

Please sign in to comment.