(value: string)
| 155 | } |
| 156 | |
| 157 | function validateLogSubsystem(value: string): string | undefined { |
| 158 | if (VALID_LOG_SUBSYSTEM_PATTERN.test(value)) { |
| 159 | return undefined; |
| 160 | } |
| 161 | return `Invalid bundle identifier: '${value}'. Bundle IDs must contain only alphanumeric characters, dots, hyphens, and underscores.`; |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * Launch an app on a simulator with implicit runtime logging. |
no outgoing calls
no test coverage detected