()
| 374 | }); |
| 375 | |
| 376 | const Parent = () => { |
| 377 | const parentRef = useRef(null); |
| 378 | return <Inner ref={parentRef}>child</Inner>; |
| 379 | }; |
| 380 | |
| 381 | act(() => { |
| 382 | render(<Parent />, scratch); |
nothing calls this directly
no test coverage detected
searching dependent graphs…