🐛 Fix history panel remains open after restoring a version

This commit is contained in:
Pablo Alba 2024-12-05 15:55:14 +01:00
parent f2f3d9f7eb
commit b0a3f2b72a
2 changed files with 5 additions and 1 deletions

View file

@ -71,4 +71,7 @@ test("Save and restore version", async ({ page }) => {
);
await page.getByRole("button", { name: "Restore" }).click();
// check that the history panel is closed after restore
await expect(page.getByRole("tab", { name: "design" })).toBeVisible();
});