Skip to content

Instantly share code, notes, and snippets.

@corradin
Created February 25, 2018 19:59
Show Gist options
  • Save corradin/642b30126f9fddbc70bc363e40c065e1 to your computer and use it in GitHub Desktop.
Save corradin/642b30126f9fddbc70bc363e40c065e1 to your computer and use it in GitHub Desktop.
import renderer from 'react-test-renderer';
it('should match the snapshot', () => {
const component = renderer.create(
<Button />
);
let tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment