UNPKG

807 BTypeScriptView Raw
1import { DOMWrapper } from './domWrapper';
2import { VueWrapper } from './vueWrapper';
3import BaseWrapper from './baseWrapper';
4import { mount, shallowMount } from './mount';
5import { renderToString } from './renderToString';
6import { MountingOptions } from './types';
7import { RouterLinkStub } from './components/RouterLinkStub';
8import { createWrapperError } from './errorWrapper';
9import { config } from './config';
10import { flushPromises } from './utils/flushPromises';
11import { enableAutoUnmount, disableAutoUnmount } from './utils/autoUnmount';
12export { mount, shallowMount, renderToString, enableAutoUnmount, disableAutoUnmount, RouterLinkStub, VueWrapper, DOMWrapper, BaseWrapper, config, flushPromises, MountingOptions, createWrapperError };
13export type { ComponentMountingOptions } from './mount';