【发布时间】:2021-05-27 18:18:19
【问题描述】:
已经 7 天了,我已尝试阅读有关此的所有博客,但似乎没有任何效果。
问题
我需要为我的 React FC 模拟 ```useSelector``` 和 ```useDispatch```。组件:
/* renders the list of the apis */
const ApiSection = ({ categories }) => {
const [page, setPage] = useState(0);
const [query, setQuery] = useState('');
const [search, setSearch] = useState(false);
const dispatch = useDispatch();
useEffect(() => {
dispatch(fetchAllApis({ page, category: categories, query }));
}, [page, categories, dispatch, search]);
// all these three are showing as undefined when consoled for UNIT TESTS !!!!!!!
const { apiList, error, loading } = useSelector((state) => {
return state.marketplaceApiState;
});
const renderApiCards = () => {
let apis = Object.values(apiList);
return apis.map((each) => (
<ApiCard key={each.apiId} info={each} data-test="ApiCard" />
));
};
return (
<div className="ApiSection" data-test="ApiSection">
<div className="ApiSection__search">
<div className="ApiSection__cards">{renderApiCards()}</div>
<button onClick={() => setPage(page - 1)}>Previous</button>
<button onClick={() => setPage(page + 1)}>Next</button>
</div>
);
};
export default ApiSection;
测试:
const initialState = {
marketplaceApiState: {
apiList: {
a123: { name: 'name', description: 'desc', categories: 'cat', apiId: 'a123'},
},
},
};
const mockDispatch = jest.fn();
jest.mock('react-redux', () => ({
...jest.requireActual('react-redux'),
useSelector: () => initialState,
useDispatch: () => mockDispatch,
}));
const setup = () => {
const store = createTestStore(initialState);
// I have also tried mount with Provider
return shallow(<ApiListSection categories={['a']} store={store} />);
};
describe('ApiListSection Component', () => {
afterEach(() => {
jest.clearAllMocks();
});
test('Calls action on mount', () => {
setup();
expect(useSelector).toHaveBeenCalled();
expect(mockDispatch).toHaveBeenCalled();
});
});
错误:
这是我得到的错误:
let apis = Object.values(apiList);
我真的很感激,卡了这么多天
【问题讨论】:
标签: reactjs unit-testing react-redux jestjs enzyme