(message: string)
| 313 | * dynamic-linker text and Puppeteer's wrapper. |
| 314 | */ |
| 315 | export function isSharedLibLaunchError(message: string): boolean { |
| 316 | return ( |
| 317 | /cannot open shared object file/i.test(message) || |
| 318 | /error while loading shared libraries/i.test(message) || |
| 319 | /lib[\w.+-]*\.so[\w.]*: cannot open/i.test(message) |
| 320 | ); |
| 321 | } |
| 322 | |
| 323 | /** |
| 324 | * Turn a cryptic Chrome launch failure into actionable, per-distro guidance. |
no outgoing calls
no test coverage detected