Created
October 4, 2018 13:35
-
-
Save whisher/9f83484b8602f62e4e1cde4d96e7ab2b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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