()
| 6 | const root = document.createElementNS('http://www.w3.org/2000/svg', 'svg') |
| 7 | createApp({ |
| 8 | render() { |
| 9 | return h('g') |
| 10 | }, |
| 11 | }).mount(root) |
| 12 | expect(root.children.length).toBe(1) |
| 13 | expect(root.children[0]).toBeInstanceOf(SVGElement) |
no test coverage detected