(win, host = 'localhost', port = 8081)
| 29 | ` |
| 30 | |
| 31 | export const catchConsoleLogLink = (win, host = 'localhost', port = 8081) => { |
| 32 | if (win.devToolsWebContents) { |
| 33 | return win.devToolsWebContents.executeJavaScript(`(() => { |
| 34 | ${getCatchConsoleLogScript(host, port)} |
| 35 | })()`) |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | export const removeUnecessaryTabs = (win) => { |
| 40 | if ( |
no test coverage detected