@@ -22,13 +22,17 @@ import { ShapeFlags } from './utils/vueShared'
22
22
*/
23
23
function createVMProxy < T extends ComponentPublicInstance > (
24
24
vm : T ,
25
- setupState : Record < string , any >
25
+ setupState : Record < string , any > ,
26
+ exposed : Record < string , any > | null
26
27
) : T {
27
28
return new Proxy ( vm , {
28
29
get ( vm , key , receiver ) {
29
30
if ( vm . $ . exposed && vm . $ . exposeProxy && key in vm . $ . exposeProxy ) {
30
31
// first if the key is exposed
31
32
return Reflect . get ( vm . $ . exposeProxy , key , receiver )
33
+ } else if ( exposed && key in exposed ) {
34
+ // first if the key is exposed
35
+ return Reflect . get ( exposed , key , receiver )
32
36
} else if ( key in setupState ) {
33
37
// second if the key is acccessible from the setupState
34
38
return Reflect . get ( setupState , key , receiver )
@@ -107,11 +111,24 @@ export class VueWrapper<
107
111
// if we return it as `vm`
108
112
// This does not work for functional components though (as they have no vm)
109
113
// or for components with a setup that returns a render function (as they have an empty proxy)
110
- // in both cases, we return `vm` directly instead
114
+ // in both cases, we return `vm` directly instead.
115
+ //
116
+ // NOTE https://github.com/vuejs/test-utils/issues/2591
117
+ // I'm sry i'm not entirely sure why, but exposed properties — via expose/defineExpose
118
+ // are not assigned to the componentVM when the the `vm` argument provided
119
+ // to this constructor comes from `findComponent` — as in, not the original instance
120
+ // but already the proxied one. I first suspected that was by design of defineExpose
121
+ // but that doesn't explain why it works when finding a .vue component or
122
+ // vs it's bundled version, where the different is conversion of to a render
123
+ // function. Also i've noticed that sometimes we can get some exceptions in
124
+ // bundle code becuase render function is hoisted and exposed if properties
125
+ // are returned to template, they also become available in th einstance.
126
+ //
111
127
if ( hasSetupState ( vm ) ) {
112
- this . componentVM = createVMProxy < T > ( vm , vm . $ . setupState )
128
+ this . componentVM = createVMProxy < T > ( vm , vm . $ . setupState , vm . $ . exposed )
113
129
} else {
114
130
this . componentVM = vm
131
+ Object . assign ( this . componentVM , vm . $ . exposed )
115
132
}
116
133
this . __setProps = setProps
117
134
0 commit comments