| 57 | |
| 58 | it('should put .render() returned DOM into .children of a Custom Element', () => { |
| 59 | @component({ tagName: 'x-third' }) |
| 60 | class XThird extends HTMLElement { |
| 61 | render() { |
| 62 | return <h2 />; |
| 63 | } |
| 64 | } |
| 65 | renderer.render(<XThird />); |
| 66 | |
| 67 | const { shadowRoot, innerHTML } = document.body.lastElementChild; |
nothing calls this directly
no test coverage detected