Skip to content

Instantly share code, notes, and snippets.

@sminutoli
Created September 2, 2016 12:50
Show Gist options
  • Save sminutoli/b9074bf444e2c74bf2c821ad7f63a59f to your computer and use it in GitHub Desktop.
Save sminutoli/b9074bf444e2c74bf2c821ad7f63a59f to your computer and use it in GitHub Desktop.
const wrapper = shallow(<Login {...props}/>);
it('should have a title', ()=>{
expect(wrapper.find('.login__title').length).toBe(1);
});
it('should render the correct title', ()=>{
expect(wrapper.find('.login__title').prop('children')).toBe('Bienvenido a Warehouse');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment