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

황세호님의 프로필 이미지

작성한 질문수

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

AddToDo Component

저 또한 TextInput을 찾지 못합니다..

작성

·

157

0

윗 분 질문이 동일하게 있으나 답변이 없어 다시 질문 올립니다!

답변 1

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);

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