import React from "react"; import renderer from "react-test-renderer"; import MyComponent from "../components/MyComponent"; describe("MyComponent", () => { it("renders correctly", () => { const tree = renderer.create().toJSON(); expect(tree).toMatchSnapshot(); }); });