(target: PlatformTarget)
| 444 | } |
| 445 | |
| 446 | export function getPlatformTargetName(target: PlatformTarget): string { |
| 447 | return `${target.name ?? target.model ?? target.id ?? '?'}${ |
| 448 | target.virtual ? ` (${target.platform === 'ios' ? 'simulator' : 'emulator'})` : '' |
| 449 | }`; |
| 450 | } |
| 451 | |
| 452 | export async function getAddedPlatforms(config: Config): Promise<string[]> { |
| 453 | const platforms: string[] = []; |
no outgoing calls
no test coverage detected