import { render } from "@testing-library/react"; import { SearchShortcutsForm } from "content-src/components/TopSites/SearchShortcutsForm"; const DEFAULT_PROPS = { dispatch: jest.fn(), onClose: jest.fn(), TopSites: { rows: [], searchShortcuts: [], }, }; describe("", () => { it("should render", () => { const { container } = render(); expect(container.querySelector(".topsite-form")).toBeInTheDocument(); }); });