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