@testing-library/react-native
Version:
Simple and complete React Native testing utilities that encourage good testing practices.
12 lines (11 loc) • 357 B
TypeScript
import { NormalizerFn } from '../matches';
export type CommonQueryOptions = {
/** Should query include elements hidden from accessibility. */
includeHiddenElements?: boolean;
/** RTL-compatibile alias to `includeHiddenElements`. */
hidden?: boolean;
};
export type TextMatchOptions = {
exact?: boolean;
normalizer?: NormalizerFn;
};