()
| 65 | |
| 66 | it('warn if a object is passed to root.render(...)', async () => { |
| 67 | function App() { |
| 68 | return 'Child'; |
| 69 | } |
| 70 | |
| 71 | const root = ReactDOMClient.createRoot(container); |
| 72 | root.render(<App />, {}); |
nothing calls this directly
no test coverage detected