Skip to content

Commit

Permalink
increase preflight timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh committed Nov 26, 2024
1 parent a36dba6 commit 65867a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/playwright/tests/@smoke-test/test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test("smoke test", async ({ page }) => {
);
await page.getByRole("button", { name: "Continue" }).click();
await expect(page.locator("#app")).toContainText("Results", {
timeout: 30000,
timeout: 60 * 1000,
});
await expect(page.locator("#app")).toContainText("Sequence is 0");
await page.getByRole("button", { name: "Deploy" }).click();
Expand Down

0 comments on commit 65867a0

Please sign in to comment.