( runtime, options, )
| 338 | }); |
| 339 | |
| 340 | export const isHiddenCommand: RuntimeCommand<IsSelectorCommandOptions, IsCommandResult> = async ( |
| 341 | runtime, |
| 342 | options, |
| 343 | ): Promise<IsCommandResult> => |
| 344 | await isCommand(runtime, { |
| 345 | ...options, |
| 346 | predicate: 'hidden', |
| 347 | selector: options.target.selector, |
| 348 | }); |
| 349 | |
| 350 | export const waitCommand: RuntimeCommand<WaitCommandOptions, WaitCommandResult> = async ( |
| 351 | runtime, |
nothing calls this directly
no test coverage detected