( runtime, options, )
| 72 | } & BackendResultEnvelope; |
| 73 | |
| 74 | export const pressCommand: RuntimeCommand<PressCommandOptions, PressCommandResult> = async ( |
| 75 | runtime, |
| 76 | options, |
| 77 | ): Promise<PressCommandResult> => await tapCommand(runtime, options, 'press'); |
| 78 | |
| 79 | export const clickCommand: RuntimeCommand<ClickCommandOptions, PressCommandResult> = async ( |
| 80 | runtime, |
nothing calls this directly
no test coverage detected
searching dependent graphs…