use ES6 arrow functions
This commit is contained in:
parent
e0a4455622
commit
ecd4042c20
3 changed files with 6 additions and 6 deletions
|
@ -4,8 +4,8 @@ import sinon from 'sinon';
|
|||
|
||||
import Button from '../../../app/assets/javascripts/components/components/button'
|
||||
|
||||
describe('<Button />', function() {
|
||||
it('simulates click events', function() {
|
||||
describe('<Button />', () => {
|
||||
it('simulates click events', () => {
|
||||
const onClick = sinon.spy();
|
||||
const wrapper = shallow(<Button onClick={onClick} />);
|
||||
wrapper.find('button').simulate('click');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue