chore(e2e): use ControlOrMeta instead of Control

This commit is contained in:
Elian Doran 2025-01-17 22:33:19 +02:00
parent 423bea923c
commit b4ff765c5e
No known key found for this signature in database

View File

@ -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();