From b4ff765c5e3dcde382a97358f4047839cf5b313f Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 17 Jan 2025 22:33:19 +0200 Subject: [PATCH] chore(e2e): use ControlOrMeta instead of Control --- e2e/note_types/text.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/note_types/text.spec.ts b/e2e/note_types/text.spec.ts index af42d9898..542eb4e33 100644 --- a/e2e/note_types/text.spec.ts +++ b/e2e/note_types/text.spec.ts @@ -56,7 +56,7 @@ test("Displays math popup", async ({ page, context }) => { await app.goToNoteInNewTab("Empty text"); const noteContent = app.currentNoteSplit.locator(".note-detail-editable-text-editor") await noteContent.fill("Hello world"); - await noteContent.press("Control+M"); + await noteContent.press("ControlOrMeta+M"); const mathForm = page.locator(".ck-math-form"); await expect(mathForm).toBeVisible();