Skip to content

Instantly share code, notes, and snippets.

@Schubidu
Last active January 9, 2017 08:23
Show Gist options
  • Save Schubidu/89d7445cc90eb366fcb3088040bc87df to your computer and use it in GitHub Desktop.
Save Schubidu/89d7445cc90eb366fcb3088040bc87df to your computer and use it in GitHub Desktop.
jest snapshot snippet
// npm install --save-dev react-test-renderer
import React from 'react';
import renderer from 'react-test-renderer';
export default (component) => {
const tree = renderer.create(
component
).toJSON();
expect(tree).toMatchSnapshot();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment