(step: string)
| 9 | } |
| 10 | |
| 11 | function formatBuildRunStepLabel(step: string): string { |
| 12 | switch (step) { |
| 13 | case 'resolve-app-path': |
| 14 | return 'Resolving app path'; |
| 15 | case 'resolve-simulator': |
| 16 | return 'Resolving simulator'; |
| 17 | case 'boot-simulator': |
| 18 | return 'Booting simulator'; |
| 19 | case 'install-app': |
| 20 | return 'Installing app'; |
| 21 | case 'extract-bundle-id': |
| 22 | return 'Extracting bundle ID'; |
| 23 | case 'launch-app': |
| 24 | return 'Launching app'; |
| 25 | default: |
| 26 | return 'Running step'; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | export function createNoticeFragment( |
| 31 | _operation: XcodebuildOperation, |
no outgoing calls
no test coverage detected