@testing-library/react-native
Version:
Simple and complete React Native testing utilities that encourage good testing practices.
7 lines (6 loc) • 341 B
TypeScript
import type { TestInstance } from 'test-renderer';
import type { AccessibilityValueMatcher } from '../helpers/matchers/match-accessibility-value';
export declare function toHaveAccessibilityValue(this: jest.MatcherContext, instance: TestInstance, expectedValue: AccessibilityValueMatcher): {
pass: boolean;
message: () => string;
};