We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c875019 commit 8963b79Copy full SHA for 8963b79
packages/runtime-core/__tests__/vnode.spec.ts
@@ -553,18 +553,6 @@ describe('vnode', () => {
553
expect(vnode.dynamicChildren).toStrictEqual([vnode1])
554
})
555
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
-
568
// #1039
569
// <component :is="foo">{{ bar }}</component>
570
// - content is compiled as slot
0 commit comments