인프런 커뮤니티 질문&답변

정형수님의 프로필 이미지

작성한 질문수

TDD 개발 방법론을 활용한 React Native 앱 개발

AddToDo Component

TextInput을 찾지 못합니다.

작성

·

281

1

텍스트 인풋을 찾지 못하고 실패합니다. 이유를 잘 모르겠습니다.

답변 3

0

enzyme에서 제공하는 debug 함수로 확인 해본결과 

 <View>

   <Component allowFontScaling={true}rejectResponderTermination={true} underlineColorAndroid="transparent" />

  <Button title="A" />

</View> 값을 리턴 받습니다.

테스트 코드를 작성하는 곳에서 

import { TextInput } from 'react-native';

expect(wrapper.find(TextInput)).toHaveLength(1);

이러한 형태로 테스트를 진행하시면 통과가 됩니다.

0

저도 TextInput 테스트만 실패하네요.. 어떻게 해결하셨나요?

0

정형수님의 프로필 이미지
정형수
질문자

TextInput을 import 해서 TextInput component를 find하니까 되네요... 이유를 모르겠습니다.. ㅠㅠ