()
| 48 | }); |
| 49 | |
| 50 | function App() { |
| 51 | const [count, setCount] = useState(0); |
| 52 | increment = () => setCount(prevCount => prevCount + 1); |
| 53 | return <div>{count}</div>; |
| 54 | } |
| 55 | |
| 56 | it('should call old options on mount', () => { |
| 57 | render(<App />, scratch); |
nothing calls this directly
no test coverage detected