()
| 162 | options: { packageName: string; timeoutMs?: number }, |
| 163 | ): Promise<Awaited<ReturnType<AndroidAdbExecutor>>> { |
| 164 | const install = async () => |
| 165 | await installAndroidAdbPackage(apkPath, { |
| 166 | allowFailure: true, |
| 167 | provider: adbProvider, |
| 168 | ...installOptions, |
| 169 | timeoutMs: options.timeoutMs, |
| 170 | }); |
| 171 | |
| 172 | const result = await install(); |
| 173 | if (result.exitCode === 0 || !isInstallUpdateIncompatible(result)) { |
no test coverage detected
searching dependent graphs…