mirror of
https://github.com/penpot/penpot.git
synced 2025-08-02 06:38:26 +02:00
Merge remote-tracking branch 'origin/staging' into superalex-merge-conflicts-2
This commit is contained in:
commit
a1fc785771
37 changed files with 734 additions and 399 deletions
|
@ -177,3 +177,15 @@ test("Bug 7489 - Workspace-palette items stay hidden when opening with keyboard-
|
|||
),
|
||||
).toBeVisible();
|
||||
});
|
||||
|
||||
test("Bug 8784 - Use keyboard arrow to move inside a text input does not change tabs", async ({
|
||||
page,
|
||||
}) => {
|
||||
const workspacePage = new WorkspacePage(page);
|
||||
await workspacePage.setupEmptyFile();
|
||||
await workspacePage.goToWorkspace();
|
||||
await workspacePage.pageName.click();
|
||||
await page.keyboard.press("ArrowLeft");
|
||||
|
||||
await expect(workspacePage.pageName).toHaveText("Page 1");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue