mirror of
https://github.com/maputnik/editor.git
synced 2026-02-06 12:40:00 +00:00
Fix history test for linux
This commit is contained in:
@@ -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();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user