Ver código fonte

better redux test

Daniel Zlotin 6 anos atrás
pai
commit
3053550a96
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2
    2
      integration/redux/Redux.test.js

+ 2
- 2
integration/redux/Redux.test.js Ver arquivo

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