chore: fix Portal test types

This commit is contained in:
Evan You 2020-03-24 12:58:12 -04:00
parent 45ba06ac5f
commit dbbd9990e0

View File

@ -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()