-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathgetComponent.d-test.ts
40 lines (33 loc) · 1.14 KB
/
getComponent.d-test.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
30
31
32
33
34
35
36
37
38
39
40
import { expectType } from './index'
import { defineComponent, ComponentPublicInstance } from 'vue'
import { mount } from '../src'
import WrapperLike from '../src/interfaces/wrapperLike'
const ComponentToFind = defineComponent({
props: {
a: {
type: String,
required: true
}
},
template: ''
})
const AppWithDefine = defineComponent({
template: ''
})
const wrapper = mount(AppWithDefine)
// get by type
const componentByType = wrapper.getComponent(ComponentToFind)
// returns a wrapper with properly typed vm
expectType<string>(componentByType.vm.a)
// get by name
const componentByName = wrapper.getComponent({ name: 'ComponentToFind' })
// returns a wrapper with a generic vm (any)
expectType<ComponentPublicInstance>(componentByName.vm)
// get by string
const componentByString = wrapper.getComponent('other')
// returns a wrapper with WrapperLike (no vm as it could be a functional component)
expectType<Omit<WrapperLike, 'exists'>>(componentByString)
// get by ref
const componentByRef = wrapper.getComponent({ ref: 'ref' })
// returns a wrapper with a generic vm (any)
expectType<ComponentPublicInstance>(componentByRef.vm)