Skip to content

Instantly share code, notes, and snippets.

@michelalbers
Created September 9, 2018 19:15
Show Gist options
  • Save michelalbers/7e865918e102e5c9c33e5db692e56cc2 to your computer and use it in GitHub Desktop.
Save michelalbers/7e865918e102e5c9c33e5db692e56cc2 to your computer and use it in GitHub Desktop.
import * as React from 'react';
import * as renderer from 'react-test-renderer';
import MyComponent from '../MyComponent';
describe('<MyComponent />', () => {
it('should render without props', () => {
const json = renderer.create(<MyComponent />).toJSON();
expect(json).toMatchSnapshot();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment