Following this question regarding Tabularray and beamer compatibility, How do you get to display a the table row by row in beamer ?
MWE
\documentclass{beamer}
\usepackage{tabularray}
\UseTblrLibrary{counter} %% added this line
\begin{document}
\begin{frame}
\frametitle{TEST}
\begin{tblr}{
colspec={cc},
width=\textwidth,
}
\visible<+(1)->{Test} & \visible<+(1)->{Test} \\
\visible<+(1)->{Test} & \visible<+(1)->{Test} \\
% \visible<+(1)->{Test& Test \ } % pb here
% \visible<+(1)->{Test& Test \ }
\end{tblr}
\end{frame}
\end{document}