(context: DispatchContext | undefined)
| 538 | } |
| 539 | |
| 540 | function runnerOptionsFromContext(context: DispatchContext | undefined): RunnerCallOptions { |
| 541 | return { |
| 542 | verbose: context?.verbose, |
| 543 | logPath: context?.logPath, |
| 544 | traceLogPath: context?.traceLogPath, |
| 545 | requestId: context?.requestId, |
| 546 | iosXctestrunFile: context?.iosXctestrunFile, |
| 547 | iosXctestDerivedDataPath: context?.iosXctestDerivedDataPath, |
| 548 | iosXctestEnvDir: context?.iosXctestEnvDir, |
| 549 | }; |
| 550 | } |
| 551 | |
| 552 | export async function handleSwipeCommand( |
| 553 | device: DeviceInfo, |
no outgoing calls
no test coverage detected