()
| 1537 | it('renders children', () => { |
| 1538 | const spy = jest.fn(); |
| 1539 | const App = () => { |
| 1540 | spy(); |
| 1541 | return <div>hey</div>; |
| 1542 | }; |
| 1543 | RHL.register(App, 'App', 'test.js'); |
| 1544 | |
| 1545 | const wrapper = mount( |
nothing calls this directly
no outgoing calls
no test coverage detected