Trying to employ the minipage and wrapfig packages to get itemized bullets to wrap around an image; however, the image is thrown to the next page by itself. Is there anything in the code below that would cause this to fail?
\begin{frame}[allowframebreaks]
\frametitle{Fathead Minnow Toxicity (FMT)}
\begin{itemize}
\item Important as an indicator species biological model in aquatic toxicology studies, similar to the Canary in a coal mine.
\begin{minipage}{\linewidth}
\begin{wrapfigure}[t]{l}{0.3\textwidth}
\includegraphics[width=1in,height=1.13in,keepaspectratio]{fatheadminnow}
\end{wrapfigure}
\end{minipage}
\end{itemize}
\end{frame}

minipagepackage? or are you using the standard minipage environment? It is hard to see as you have not provided a usable example. A minipage around a wrapfig would presumably always stop the wrapfig environment working with or without the beamer class being used. – David Carlisle Sep 07 '18 at 07:08