@testing-library/react-native
Version:
Simple and complete React Native testing utilities that encourage good testing practices.
10 lines (9 loc) • 332 B
TypeScript
import type { TestInstance } from 'test-renderer';
export declare function toBeExpanded(this: jest.MatcherContext, instance: TestInstance): {
pass: boolean;
message: () => string;
};
export declare function toBeCollapsed(this: jest.MatcherContext, instance: TestInstance): {
pass: boolean;
message: () => string;
};