(value: string)
| 61 | } |
| 62 | |
| 63 | function normalizeAndroidName(value: string): string { |
| 64 | return value.toLowerCase().replace(/_/g, ' ').replace(/\s+/g, ' ').trim(); |
| 65 | } |
| 66 | |
| 67 | export function parseAndroidEmulatorAvdNameOutput(rawOutput: string): string | undefined { |
| 68 | const lines = rawOutput |
no outgoing calls
no test coverage detected