Procházet zdrojové kódy

chore: fix Portal test types

Evan You před 6 roky
rodič
revize
dbbd9990e0

+ 2 - 2
packages/runtime-core/__tests__/components/Portal.spec.ts

@@ -11,7 +11,7 @@ import {
   TestElement,
   TestNode
 } from '@vue/runtime-test'
-import { VNodeArrayChildren } from '../../src/vnode'
+import { VNodeArrayChildren, createVNode } from '../../src/vnode'
 
 describe('renderer: portal', () => {
   test('should work', () => {
@@ -71,7 +71,7 @@ describe('renderer: portal', () => {
 
     expect(serializeInner(target)).toMatchSnapshot()
 
-    children.value = [h(Text, 'teleported')]
+    children.value = [createVNode(Text, null, 'teleported')]
     await nextTick()
 
     expect(serializeInner(target)).toMatchSnapshot()