Skip to content

Instantly share code, notes, and snippets.

@whtswrng
Created November 30, 2018 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whtswrng/03d5eca76396e01672568ef4509e5f97 to your computer and use it in GitHub Desktop.
Save whtswrng/03d5eca76396e01672568ef4509e5f97 to your computer and use it in GitHub Desktop.
test('render Markdown in preview mode', () => {
const wrapper = shallow(
<MarkdownEditor value="*Hello* Jest!" />
);
expect(wrapper).toMatchSnapshot();
wrapper.find('[name="toggle-preview"]').simulate('click');
expect(wrapper).toMatchSnapshot();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment