(win, name)
| 36 | } |
| 37 | |
| 38 | const invokeDevMethod = (win, name) => executeJavaScript( |
| 39 | win, |
| 40 | `window.invokeDevMethod && window.invokeDevMethod('${name}')`, |
| 41 | ) |
| 42 | |
| 43 | const registerKeyboradShortcut = (win) => { |
| 44 | const prefix = process.platform === 'darwin' ? 'Command' : 'Ctrl' |
no test coverage detected