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