Fix history test for linux

This commit is contained in:
HarelM
2023-12-17 00:07:21 +02:00
parent 9fb06d16c8
commit 2b10213197

View File

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