1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/karma-detect-browsers/browsers/ChromeCanary.js
2025-08-25 17:48:13 +08:00

14 lines
629 B
JavaScript

module.exports = {
name: 'ChromeCanary',
DEFAULT_CMD: {
linux: ['google-chrome-canary'],
darwin: ['/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'],
win32: [
process.env.LOCALAPPDATA + '\\Google\\Chrome SxS\\Application\\chrome.exe',
process.env.ProgramW6432 + '\\Google\\Chrome SxS\\Application\\chrome.exe',
process.env.ProgramFiles + '\\Google\\Chrome SxS\\Application\\chrome.exe',
process.env['ProgramFiles(x86)'] + '\\Google\\Chrome SxS\\Application\\chrome.exe'
]
},
ENV_CMD: 'CHROME_CANARY_BIN'
};