Skip to content

Instantly share code, notes, and snippets.

@corradin
Created February 25, 2018 20:02
Show Gist options
  • Save corradin/be3643ad29accb139d3e49e8e7c546e0 to your computer and use it in GitHub Desktop.
Save corradin/be3643ad29accb139d3e49e8e7c546e0 to your computer and use it in GitHub Desktop.
it('should display the correct text', () => {
const wrapper = shallow(<Button text="Hit me"/>);
const buttonText = 'Hit me';
expect(wrapper.contains(buttonText)).toEqual(true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment