UNPKG

@testing-library/react-native

Version:

Simple and complete React Native testing utilities that encourage good testing practices.

12 lines (11 loc) 357 B
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; };