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