Skip to content

Commit

Permalink
Merge branch 'kschaper-avatar-component-testing' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron committed Oct 14, 2016
2 parents 7a6d95f + 44856fb commit ab7cb80
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"browserify": "^13.1.0",
"browserify-incremental": "^3.1.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"enzyme": "^2.4.1",
"es6-promise": "^3.2.1",
"immutable": "^3.8.1",
Expand Down
22 changes: 18 additions & 4 deletions spec/javascript/components/avatar.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,23 @@ import { render } from 'enzyme';
import Avatar from '../../../app/assets/javascripts/components/components/avatar'

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);
const src = '/path/to/image.jpg';
const size = 100;
const wrapper = render(<Avatar src={src} size={size} />);

it('renders an img element with the given src', () => {
expect(wrapper.find('img')).to.have.attr('src', `${src}`);
});

it('renders an img element of the given size', () => {
['width', 'height'].map((attr) => {
expect(wrapper.find('img')).to.have.attr(attr, `${size}`);
});
});

it('renders a div element of the given size', () => {
['width', 'height'].map((attr) => {
expect(wrapper.find('div')).to.have.style(attr, `${size}px`);
});
});
});
4 changes: 4 additions & 0 deletions spec/javascript/setup.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import chai from 'chai';
import chaiEnzyme from 'chai-enzyme';
chai.use(chaiEnzyme());

/**
* http://airbnb.io/enzyme/docs/guides/jsdom.html
*/
Expand Down

0 comments on commit ab7cb80

Please sign in to comment.