Skip to content

Instantly share code, notes, and snippets.

@trinwin
Created August 2, 2020 06:38
Show Gist options
  • Save trinwin/fbd19f328eccea888f7ba119231f1f6f to your computer and use it in GitHub Desktop.
Save trinwin/fbd19f328eccea888f7ba119231f1f6f to your computer and use it in GitHub Desktop.
import React from "react";
import Button from "../Button";
import renderer from "react-test-renderer";
it("renders correctly", () => {
const tree = renderer.create(<Button text="Some Text" />).toJSON();
expect(tree).toMatchSnapshot();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment