React Native 0.56 + Enzyme + Jest + React Navigation: Enzyme crashes because of import statement

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-07 03:35:28
Herman Starikov

You could mock dependencies, such as navigation, like this:

jest.mock('react-navigation', () => ({ withNavigation: component => component}));

And then pass props, including navigation, to your component manually:

const mockProps = {
    navigation: { navigate: jest.fn() },
    loginSuccess: jest.fn(),
    isSubmitting: true
}
wrapper = shallow(<LoginForm {...mockProps}/>);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!