mirror of
https://github.com/penpot/penpot.git
synced 2025-05-10 00:46:38 +02:00
🐛 Fix flakiness of playwright test for bug 10090 (#5787)
This commit is contained in:
parent
cdfc0fd988
commit
e78100a776
1 changed files with 4 additions and 4 deletions
|
@ -60,8 +60,8 @@ test("BUG 10090 - Local library should be expanded by default", async ({
|
|||
|
||||
await workspacePage.clickAssets();
|
||||
|
||||
expect(workspacePage.sidebar.getByText("Local library")).toBeVisible();
|
||||
expect(workspacePage.sidebar.getByText("Components")).toBeVisible();
|
||||
expect(workspacePage.sidebar.getByText("Colors")).toBeVisible();
|
||||
expect(workspacePage.sidebar.getByText("Typographies")).toBeVisible();
|
||||
await expect(workspacePage.sidebar.getByText("Local library")).toBeVisible();
|
||||
await expect(workspacePage.sidebar.getByText("Components")).toBeVisible();
|
||||
await expect(workspacePage.sidebar.getByText("Colors")).toBeVisible();
|
||||
await expect(workspacePage.sidebar.getByText("Typographies")).toBeVisible();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue