You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
459 B

/// <reference types="jest" />
import type { ReactTestInstance } from 'react-test-renderer';
export declare function toBeEmptyElement(this: jest.MatcherContext, element: ReactTestInstance): {
pass: boolean;
message: () => string;
};
/**
* @deprecated This function has been renamed to `toBeEmptyElement`.
*/
export declare function toBeEmpty(this: jest.MatcherContext, element: ReactTestInstance): {
pass: boolean;
message: () => string;
};