()
| 234 | } |
| 235 | |
| 236 | async function getPuppeteerOrNull(): Promise<PuppeteerNode | null> { |
| 237 | try { |
| 238 | return await getPuppeteer(); |
| 239 | } catch { |
| 240 | return null; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | function getHardwareGpuProbeArgs(platform: NodeJS.Platform): string[] { |
| 245 | return [ |
no test coverage detected