(e)
| 3093 | it('should notice input changes when reverting back to original value', async () => { |
| 3094 | const log = []; |
| 3095 | function onChange(e) { |
| 3096 | log.push(e.target.value); |
| 3097 | } |
| 3098 | await act(() => { |
| 3099 | root.render(<input type="text" value="" onChange={onChange} />); |
| 3100 | }); |
no test coverage detected