Uselocation im Scherz
const mockHistoryPush = jest.fn();
jest.mock('react-router-dom', () => ({
...jest.requireActual('react-router-dom'),
useHistory: () => ({
push: mockHistoryPush,
}),
useLocation: () => ({
pathname: "/"
})
}));
Plain Pigeon