()
| 148 | } |
| 149 | |
| 150 | export function listSupportedBrowserNames(): string[] { |
| 151 | const hostPlatform = getHostPlatform(); |
| 152 | return BROWSER_REGISTRY |
| 153 | .filter(browser => hostPlatform ? getDataDirForPlatform(browser, hostPlatform) !== null : true) |
| 154 | .map(browser => browser.name); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * List available profiles for a browser. |
no test coverage detected