Next seo test with react testing library
I am trying to test my SEO component which looks like this: export const Seo: React.FC<Props> = ({ seo, title, excerpt, heroImage }) => { const description = seo?.description || excerpt const pageTitle = seo?.title || title const router =…