import { render } from "@testing-library/react"; import { BackgroundsSection } from "content-src/components/CustomizeMenu/BackgroundsSection/BackgroundsSection"; describe("", () => { it("should render", () => { const { container } = render(); expect(container.firstChild).toBeInTheDocument(); }); });