From 2b10213197505324051dbb6ac67ada904bbef8f1 Mon Sep 17 00:00:00 2001 From: HarelM Date: Sun, 17 Dec 2023 00:07:21 +0200 Subject: [PATCH] Fix history test for linux --- cypress/e2e/history.cy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/e2e/history.cy.ts b/cypress/e2e/history.cy.ts index 1498121d..a404985a 100644 --- a/cypress/e2e/history.cy.ts +++ b/cypress/e2e/history.cy.ts @@ -6,8 +6,8 @@ describe("history", () => { before(() => { const isMac = driver.isMac(); - undoKeyCombo = '{meta}z'; - redoKeyCombo = isMac ? '{meta}{shift}z' : '{meta}y'; + undoKeyCombo = isMac ? '{meta}z' : '{ctrl}z'; + redoKeyCombo = isMac ? '{meta}{shift}z' : '{ctrl}y'; driver.beforeEach(); });