UNPKG

@testing-library/react-native

Version:

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

10 lines (9 loc) 340 B
import type { TestInstance } from 'test-renderer'; import type { TextMatch } from '../../matches'; export interface AccessibilityValueMatcher { min?: number; max?: number; now?: number; text?: TextMatch; } export declare function matchAccessibilityValue(instance: TestInstance, matcher: AccessibilityValueMatcher): boolean;