(filePath: string)
| 328 | } |
| 329 | |
| 330 | function readLogFileSafe(filePath: string): string { |
| 331 | try { |
| 332 | return fs.readFileSync(filePath, 'utf-8'); |
| 333 | } catch { |
| 334 | return ''; |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | async function startTrackedOsLogStream( |
| 339 | simulatorUuid: string, |
no outgoing calls
no test coverage detected