mirror of
https://github.com/penpot/penpot.git
synced 2025-05-09 22:16:37 +02:00
🐛 Toolbar keeps toggling on and off on spacebar press
This commit is contained in:
parent
058a72b817
commit
740a872231
6 changed files with 34 additions and 3 deletions
|
@ -53,3 +53,14 @@ test("User makes a group", async ({ page }) => {
|
|||
await workspacePage.page.keyboard.press("ControlOrMeta+g");
|
||||
await workspacePage.expectSelectedLayer("Group");
|
||||
});
|
||||
|
||||
test("Bug 7654 - Toolbar keeps toggling on and off on spacebar press", async ({ page }) => {
|
||||
const workspacePage = new WorkspacePage(page);
|
||||
await workspacePage.setupEmptyFile();
|
||||
await workspacePage.goToWorkspace();
|
||||
|
||||
await workspacePage.toggleToolbarButton.click();
|
||||
await workspacePage.page.keyboard.press("Backspace");
|
||||
await workspacePage.page.keyboard.press("Enter");
|
||||
await workspacePage.expectHiddenToolbarOptions();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue