Skip to content

Commit 8963b79

Browse files
authored
test(runtime-core): remove incorrect suspense test in vnode spec (#13782)
1 parent c875019 commit 8963b79

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

packages/runtime-core/__tests__/vnode.spec.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -553,18 +553,6 @@ describe('vnode', () => {
553553
expect(vnode.dynamicChildren).toStrictEqual([vnode1])
554554
})
555555

556-
test('with suspense', () => {
557-
const hoist = createVNode('div')
558-
let vnode1
559-
const vnode =
560-
(openBlock(),
561-
createBlock('div', null, [
562-
hoist,
563-
(vnode1 = createVNode(() => {}, null, 'text')),
564-
]))
565-
expect(vnode.dynamicChildren).toStrictEqual([vnode1])
566-
})
567-
568556
// #1039
569557
// <component :is="foo">{{ bar }}</component>
570558
// - content is compiled as slot

0 commit comments

Comments
 (0)