Skip to content

Commit

Permalink
bump expect timeout for iframe input (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
teenoh committed Aug 1, 2022
1 parent 2a597d6 commit 732fcd5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion site/tests/universal/blockpage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ test("Updating block properties should update block preview", async ({

const blockFrameLocator = page.frameLocator("iframe[title='block']");

await expect(blockFrameLocator.locator("input")).toBeVisible();
await expect(blockFrameLocator.locator("input")).toBeVisible({
timeout: 10000,
});

const jsonEditor = page.locator(
"[data-testid='block-properties-tabpanel'] >> textarea",
Expand Down

0 comments on commit 732fcd5

Please sign in to comment.