@testing-library/react-native
Version:
Simple and complete React Native testing utilities that encourage good testing practices.
10 lines (9 loc) • 389 B
TypeScript
import type { TextMatch } from '../../matches';
/**
* Matches the given string property again string or regex matcher.
*
* @param prop - The string prop to match.
* @param matcher - The string or regex to match.
* @returns - Whether the string prop matches the given string or regex.
*/
export declare function matchStringProp(prop: string | undefined, matcher: TextMatch): boolean;