()
| 245 | } |
| 246 | |
| 247 | export function getBrowserExecutable(): {type: BrowserType; path?: string} { |
| 248 | const prefs = getPreferences(); |
| 249 | return { |
| 250 | type: prefs.browser?.browserType || 'default', |
| 251 | path: prefs.browser?.browserExecutable, |
| 252 | }; |
| 253 | } |
| 254 | |
| 255 | export function setBrowserExecutable( |
| 256 | type: BrowserType, |
no test coverage detected