import { render } from "@testing-library/react"; import { SectionTitle } from "content-src/components/DiscoveryStreamComponents/SectionTitle/SectionTitle"; describe("", () => { it("should render", () => { const { container } = render( ); expect(container.querySelector(".ds-section-title")).toBeInTheDocument(); }); });