File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/runtime-vapor/__tests__/dom Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ import {
11
11
} from '../../src/dom/prop'
12
12
import { setStyle } from '../../src/dom/style'
13
13
import {
14
- createComponentInstance ,
14
+ ComponentInternalInstance ,
15
15
setCurrentInstance ,
16
16
} from '../../src/component'
17
17
import { getMetadata , recordPropMetadata } from '../../src/componentMetadata'
18
18
import { getCurrentScope } from '@vue/reactivity'
19
19
20
20
let removeComponentInstance = NOOP
21
21
beforeEach ( ( ) => {
22
- const instance = createComponentInstance ( ( ( ) => { } ) as any , { } , null )
22
+ const instance = new ComponentInternalInstance ( ( ( ) => { } ) as any , { } , null )
23
23
const reset = setCurrentInstance ( instance )
24
24
const prev = getCurrentScope ( )
25
25
instance . scope . on ( )
You can’t perform that action at this time.
0 commit comments