(projectPath: string, username: string)
| 188 | } |
| 189 | |
| 190 | function buildXcuserstatePath(projectPath: string, username: string): string { |
| 191 | const base = projectPath.endsWith('.xcworkspace') |
| 192 | ? projectPath |
| 193 | : `${projectPath}/project.xcworkspace`; |
| 194 | return `${base}/xcuserdata/${username}.xcuserdatad/UserInterfaceState.xcuserstate`; |
| 195 | } |
| 196 | |
| 197 | export async function lookupSimulatorName( |
| 198 | ctx: XcodeStateReaderContext, |
no outgoing calls
no test coverage detected