(result: ExecResult)
| 49 | } |
| 50 | |
| 51 | function commandOutput(result: ExecResult): string { |
| 52 | return `${result.stdout}\n${result.stderr}`; |
| 53 | } |
| 54 | |
| 55 | function adbArgs(serial: string, args: string[]): string[] { |
| 56 | return ['-s', serial, ...args]; |
no outgoing calls
no test coverage detected