소스 검색

better redux test

Daniel Zlotin 6 년 전
부모
커밋
3053550a96
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      integration/redux/Redux.test.js

+ 2
- 2
integration/redux/Redux.test.js 파일 보기

@@ -41,9 +41,9 @@ describe('redux support', () => {
41 41
         );
42 42
       }
43 43
     };
44
-    Navigation.registerComponent('ComponentName', () => HOC);
44
+    const CompFromNavigation = Navigation.registerComponent('ComponentName', () => HOC);
45 45
 
46
-    const tree = renderer.create(<HOC renderCountIncrement={renderCountIncrement}/>);
46
+    const tree = renderer.create(<CompFromNavigation componentId='componentId' renderCountIncrement={renderCountIncrement}/>);
47 47
     expect(tree.toJSON().children).toEqual(['no name']);
48 48
     expect(renderCountIncrement).toHaveBeenCalledTimes(1);
49 49
   });