()
| 4 | import { fireEvent, render } from '@testing-library/react'; |
| 5 | |
| 6 | const getInputRef = () => { |
| 7 | const ref = React.createRef<any>(); |
| 8 | render(<Input ref={ref} defaultValue="light" />); |
| 9 | return ref; |
| 10 | }; |
| 11 | |
| 12 | describe('Input.Focus', () => { |
| 13 | let inputSpy: ReturnType<typeof spyElementPrototypes>; |
no outgoing calls
no test coverage detected
searching dependent graphs…