()
| 1601 | it('force updates the tree on receiving cached children', () => { |
| 1602 | const firstSpy = jest.fn(); |
| 1603 | const Dummy = () => { |
| 1604 | firstSpy(); |
| 1605 | return <div>first</div>; |
| 1606 | }; |
| 1607 | |
| 1608 | const App = () => <Dummy />; |
| 1609 | RHL.register(Dummy, 'Dummy', 'test.js'); |
nothing calls this directly
no outgoing calls
no test coverage detected