import { render } from "@testing-library/react"; import { WrapWithProvider } from "test/jest/test-utils"; import { _Sections as Sections } from "content-src/components/Sections/Sections"; describe("", () => { it("should render", () => { const { container } = render( ); expect(container.querySelector(".sections-list")).toBeInTheDocument(); }); });