Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/ee76f9a48580095756a4b1ff25e0edca to your computer and use it in GitHub Desktop.
Save szaranger/ee76f9a48580095756a4b1ff25e0edca to your computer and use it in GitHub Desktop.
test('Clicking on + increments the number', () => {
// using enzyme
const wrapper = mount(<Count />);
expect(wrapper.state('count')).toBe(0);
wrapper.instance().incrementCount();
expect(wrapper.state('count')).toBe(1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment