UNPKG

249 BTypeScriptView Raw
1import { mount } from 'enzyme';
2
3export interface MountOptions {
4 mount: typeof mount;
5 strict: boolean;
6}
7
8export default function createMount(
9 options?: Partial<MountOptions>,
10): typeof mount & {
11 attachTo: HTMLElement;
12 cleanUp(): void;
13};