MCPcopy
hub / github.com/callstack/react-native-testing-library / FindAllOptions

Interface FindAllOptions

src/helpers/find-all.ts:6–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { isHiddenFromAccessibility } from './accessibility';
5
6interface 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
17export function findAll(
18 root: TestInstance,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…