Skip to content

Instantly share code, notes, and snippets.

@whisher
Created October 4, 2018 13:35
Show Gist options
  • Save whisher/9f83484b8602f62e4e1cde4d96e7ab2b to your computer and use it in GitHub Desktop.
Save whisher/9f83484b8602f62e4e1cde4d96e7ab2b to your computer and use it in GitHub Desktop.
import React from 'react';
import { configure, shallow } from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
import { Minus } from '../Icons/Icons';
import Button from './Button';
configure({adapter: new Adapter()});
describe('<Button />', () => {
let wrapper;
beforeEach(() => {
wrapper = shallow(<Button><Minus /></Button>);
});
it('should render Minus', () => {
expect(wrapper.contains(<Minus />));
});
it('should have a className', () => {
wrapper.setProps({className: 'btn'});
expect(wrapper.prop('className')).to.equal('btn');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment