Its been 7 days, I've tried reading every blog around this and nothing seems to be working.
Issue
I need to mock ```useSelector``` and ```useDispatch``` for my React FC.Component:
/* 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;
Test:
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();
});
});
Error:
This is the error that I am getting:
let apis = Object.values(apiList);