TextInput
このコンポーネントがフォーカスされていることを確認するにはどうすればよいですか? 私はウェブ上でそれを行う方法を知っています:
const input = getByPlaceholderText("placeholder");
expect(document.activeElement).toEqual(input);
しかし、React Native で同じことを行うにはどうすればよいでしょうか?
it('should have focus', () => {
const { getByTestId } = render(<TextInput autoFocus testID={ 'alpha' }/>);
const textInput = getByTestId('alpha');
// and then ..?
});