forked from vuejs/test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
29 lines (27 loc) · 822 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { DOMWrapper } from './domWrapper'
import { VueWrapper } from './vueWrapper'
import BaseWrapper from './baseWrapper'
import { mount, shallowMount } from './mount'
import { renderToString } from './renderToString'
import { MountingOptions } from './types'
import { RouterLinkStub } from './components/RouterLinkStub'
import { createWrapperError } from './errorWrapper'
import { config } from './config'
import { flushPromises } from './utils/flushPromises'
import { enableAutoUnmount, disableAutoUnmount } from './utils/autoUnmount'
export {
mount,
shallowMount,
renderToString,
enableAutoUnmount,
disableAutoUnmount,
RouterLinkStub,
VueWrapper,
DOMWrapper,
BaseWrapper,
config,
flushPromises,
MountingOptions,
createWrapperError
}
export type { ComponentMountingOptions } from './mount'