Skip to content

Commit ba0163d

Browse files
Added 1 sec delay to fix the e2e failure
1 parent de76b41 commit ba0163d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

e2e-tests/playwright/support/pages/extensions.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export class Extensions {
3232
const allCards = this.page.locator(".v5-MuiPaper-outlined");
3333
const targetCard = allCards.filter({ hasText: pluginTitle });
3434
await targetCard.getByRole("link", { name: "Read more" }).click();
35+
// Additional wait to ensure the panel stays open after any re-rendering
36+
await this.page.waitForTimeout(1000);
3537
}
3638

3739
async selectDropdown(name: string) {

0 commit comments

Comments
 (0)