Suport device-open-app command

Summary: It is an escape hatch for testing iOS Sample app if `navigate('/')` cannot be made to work easily (D51394323)

Reviewed By: lblasa

Differential Revision: D51466697

fbshipit-source-id: fd6c2f37504807b4b634b85cb10e837523dadba8
This commit is contained in:
Andrey Goncharov
2023-11-20 07:14:09 -08:00
committed by Facebook GitHub Bot
parent 387d546e77
commit fb37f27ff5
5 changed files with 22 additions and 0 deletions

View File

@@ -82,4 +82,8 @@ export abstract class ServerDevice {
async installApp(_appBundlePath: string): Promise<void> {
throw new Error('installApp not implemented');
}
async openApp(_name: string): Promise<void> {
throw new Error('openApp not implemented');
}
}