()
| 481 | }, |
| 482 | } |
| 483 | const Parent = () => ( |
| 484 | openBlock(), |
| 485 | createBlock('div', null, [ |
| 486 | createVNode('div', { style: {} }, [createVNode(Child)], 4 /* STYLE */), |
| 487 | ]) |
| 488 | ) |
| 489 | render(h(Parent), root) |
| 490 | render(null, root) |
| 491 | expect(spy).toHaveBeenCalledTimes(1) |
nothing calls this directly
no test coverage detected