( action: FindAction['kind'], )
| 525 | } |
| 526 | |
| 527 | function isReadOnlyFindAction( |
| 528 | action: FindAction['kind'], |
| 529 | ): action is 'exists' | 'wait' | 'get_text' | 'get_attrs' { |
| 530 | return ( |
| 531 | action === 'exists' || action === 'wait' || action === 'get_text' || action === 'get_attrs' |
| 532 | ); |
| 533 | } |
no outgoing calls
no test coverage detected