| 4 | import { isHiddenFromAccessibility } from './accessibility'; |
| 5 | |
| 6 | interface FindAllOptions { |
| 7 | /** Match elements hidden from accessibility */ |
| 8 | includeHiddenElements?: boolean; |
| 9 | |
| 10 | /** RTL-compatible alias to `includeHiddenElements` */ |
| 11 | hidden?: boolean; |
| 12 | |
| 13 | /* Exclude any ancestors of deepest matched elements even if they match the predicate */ |
| 14 | matchDeepestOnly?: boolean; |
| 15 | } |
| 16 | |
| 17 | export function findAll( |
| 18 | root: TestInstance, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…