add jsdom; add basic Avatar component test
This commit is contained in:
parent
1a1b9bbbc0
commit
998f161e1d
4 changed files with 36 additions and 3 deletions
12
spec/javascript/components/avatar.test.jsx
Normal file
12
spec/javascript/components/avatar.test.jsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { expect } from 'chai';
|
||||
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() {
|
||||
const src = '/path/to/image.jpg';
|
||||
const wrapper = render(<Avatar src={src} size={100} />);
|
||||
expect(wrapper.find(`img[src="${src}"]`)).to.have.length(1);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue