mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Support BrowserStack in UI testing
This commit is contained in:
@@ -27,6 +27,12 @@ var shortCutKeyMapForMac = {
|
||||
};
|
||||
|
||||
function getShortCutKey(type) {
|
||||
if (process.env.BROWSERSTACK) {
|
||||
if (browser.desiredCapabilities.os === 'OS X') {
|
||||
return shortCutKeyMapForMac[type];
|
||||
}
|
||||
return shortCutKeyMap[type];
|
||||
}
|
||||
if (os.type() === 'Darwin') {
|
||||
return shortCutKeyMapForMac[type];
|
||||
}
|
||||
|
Reference in New Issue
Block a user