(context)
| 593 | } |
| 594 | |
| 595 | function appContainerPath(context) { |
| 596 | if (context.containerPath) { |
| 597 | return context.containerPath; |
| 598 | } |
| 599 | context.containerPath = runText("xcrun", [ |
| 600 | "simctl", |
| 601 | "get_app_container", |
| 602 | context.udid, |
| 603 | context.bundleId, |
| 604 | "data", |
| 605 | ]).trim(); |
| 606 | return context.containerPath; |
| 607 | } |
| 608 | |
| 609 | function resolveXcodeContext(args, context) { |
| 610 | if (!args.workspace && !args.project && !args.scheme) { |
no test coverage detected