1 2 3 4 5 6 7 8
import { render } from "@testing-library/react"; import App from "./App"; describe("App", () => { it("should compile", () => { render(<App />); }); });