| 534 | let current = null; |
| 535 | |
| 536 | const ref = r => { |
| 537 | current = r; |
| 538 | createCalls++; |
| 539 | return () => { |
| 540 | current = null; |
| 541 | cleanupCalls++; |
| 542 | }; |
| 543 | }; |
| 544 | |
| 545 | await act(async () => { |
| 546 | root.render(<ImperativeHandleComponent name="Alice" ref={ref} />); |
no outgoing calls
no test coverage detected