Kaynağa Gözat

better redux test

Daniel Zlotin 6 yıl önce
ebeveyn
işleme
3053550a96
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2
    2
      integration/redux/Redux.test.js

+ 2
- 2
integration/redux/Redux.test.js Dosyayı Görüntüle

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