()
| 225 | } |
| 226 | |
| 227 | export const currentExecutor = (): { window: BrowserWindow | null } => { |
| 228 | if (executorWindow && executorWindow.isDestroyed()) { |
| 229 | startExecutor() |
| 230 | } |
| 231 | return { |
| 232 | window: executorWindow, |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | const showExecutor = async () => { |
| 237 | try { |
no test coverage detected