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