друзья всем привет мне нужен JEST юнит тест вы могли помочь ? import ROUTES from "
@constants/methodRoutes";
import { fetchWithRoute } from "
@services/api";
const changePasswordAction = (data, userId) => async () => {
const route = {
...ROUTES.changePassword,
withErrorMessage: false,
pathVariable: { userId }
};
const res = await fetchWithRoute(route, data);
return res;
};
export default changePasswordAction;