【发布时间】:2019-12-22 19:55:39
【问题描述】:
我正在使用 Jest 为我的 React Native 应用程序编写单元测试。我有一个组件,它被包裹在withNavigation HOC.
我的问题是我的测试崩溃,抛出:
● LoginScreen component › given no props: should render a login form
Invariant Violation: withNavigation can only be used on a view hierarchy of a navigator. The wrapped component is unable to get access to navigation from props or context.
我正在使用 @testing-library/react-native 进行测试,我 set up a custom render method 是这样的:
import { render } from '@testing-library/react-native';
import React from 'react';
import { NavigationContext } from 'react-navigation';
import { Provider } from 'react-redux';
import store from '../src/store';
const WithProviders = ({ children }) => {
return (
<Provider store={store}>
<NavigationContext.Provider>{children}</NavigationContext.Provider>
</Provider>
);
};
const customRender = (ui, options) =>
render(ui, {
wrapper: WithProviders,
...options,
});
export * from '@testing-library/react-native';
export { customRender as render };
这适用于 Redux 上下文,但不适用于导航提供程序。
如何测试封装在withNavigation HOC 中的组件?
更新:
我尝试了这样的建议答案:
jest.mock('react-navigation', () => ({
withNavigation: Component => props => <Component {...props} />,
}));
afterAll(() => {
jest.restoreAllMocks();
});
但这不起作用。我得到了错误:
Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
【问题讨论】:
标签: react-native jestjs react-navigation higher-order-components react-testing-library