(input: string)
| 12 | export type IsPredicate = 'visible' | 'hidden' | 'exists' | 'editable' | 'selected' | 'text'; |
| 13 | |
| 14 | export function isSupportedPredicate(input: string): input is IsPredicate { |
| 15 | return ['visible', 'hidden', 'exists', 'editable', 'selected', 'text'].includes(input); |
| 16 | } |
| 17 | |
| 18 | export function evaluateIsPredicate(params: { |
| 19 | predicate: Exclude<IsPredicate, 'exists'>; |
no outgoing calls
no test coverage detected