@kadconsulting/dry
Version:
KAD Reusable Component Library
12 lines (11 loc) • 384 B
TypeScript
/// <reference types="jest" />
import '@testing-library/jest-dom';
import '@testing-library/jest-dom/extend-expect';
/** MOCKS */
export declare const actualMatchMediaValue: ((query: string) => MediaQueryList) & typeof matchMedia;
export declare const mockedMatchMediaValue: ({ matches }: {
matches: boolean;
}) => {
writable: boolean;
value: jest.Mock<any, any, any>;
};