()
| 90 | |
| 91 | it('should call old hook options for hook components', () => { |
| 92 | function HookApp() { |
| 93 | const [count, realSetCount] = useState(0); |
| 94 | setCount = realSetCount; |
| 95 | return <div>{count}</div>; |
| 96 | } |
| 97 | |
| 98 | render(<HookApp />, scratch); |
| 99 |
nothing calls this directly
no test coverage detected
searching dependent graphs…