use ES6 arrow functions
This commit is contained in:
parent
e0a4455622
commit
ecd4042c20
|
@ -3,8 +3,8 @@ import { render } from 'enzyme';
|
|||
|
||||
import Avatar from '../../../app/assets/javascripts/components/components/avatar'
|
||||
|
||||
describe('<Avatar />', function() {
|
||||
it('renders an img with the given src', function() {
|
||||
describe('<Avatar />', () => {
|
||||
it('renders an img with the given src', () => {
|
||||
const src = '/path/to/image.jpg';
|
||||
const wrapper = render(<Avatar src={src} size={100} />);
|
||||
expect(wrapper.find(`img[src="${src}"]`)).to.have.length(1);
|
||||
|
|
|
@ -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');
|
||||
|
|
|
@ -3,8 +3,8 @@ import { shallow } from 'enzyme';
|
|||
|
||||
import LoadingIndicator from '../../../app/assets/javascripts/components/components/loading_indicator'
|
||||
|
||||
describe('<LoadingIndicator />', function() {
|
||||
it('renders text that indicates loading', function() {
|
||||
describe('<LoadingIndicator />', () => {
|
||||
it('renders text that indicates loading', () => {
|
||||
const wrapper = shallow(<LoadingIndicator />);
|
||||
expect(wrapper.text()).to.match(/loading/i);
|
||||
});
|
||||
|
|
Reference in a new issue