@hirebus/academy
Version:
React component library for academy and learning platforms
7 lines (5 loc) • 384 B
TypeScript
import { RenderOptions, RenderResult } from '@testing-library/react';
import { PropsWithChildren, ReactElement } from 'react';
export declare function testMocksWrapper({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
declare function customRender(ui: ReactElement, options?: Omit<RenderOptions, 'wrapper'>): RenderResult;
export { customRender as render };