0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-10 14:51:37 -05:00

🐛 Fix workspace 'make group' test on Mac

This commit is contained in:
Belén Albeza 2024-06-26 17:02:24 +02:00
parent f306ddb51f
commit 16d0b925fa

View file

@ -50,7 +50,7 @@ test("User makes a group", async ({ page }) => {
pageId: "6191cd35-bb1f-81f7-8004-7cc63d087375", pageId: "6191cd35-bb1f-81f7-8004-7cc63d087375",
}); });
await workspacePage.clickLeafLayer("Rectangle"); await workspacePage.clickLeafLayer("Rectangle");
await workspacePage.page.keyboard.press("ControlOrMeta+g"); await workspacePage.page.keyboard.press("Control+g");
await workspacePage.expectSelectedLayer("Group"); await workspacePage.expectSelectedLayer("Group");
}); });