diff options
author | Kai Schaper <303@posteo.de> | 2016-10-10 22:32:03 +0200 |
---|---|---|
committer | Kai Schaper <303@posteo.de> | 2016-10-10 22:48:58 +0200 |
commit | 998f161e1d73ee699a99a65fa5e7701ea6602567 (patch) | |
tree | 3e1862ea69e9301bae197c017740846e7e31ed40 /spec/javascript/components | |
parent | 1a1b9bbbc0874bfd8542ccb149589ef7757e4415 (diff) |
add jsdom; add basic Avatar component test
Diffstat (limited to 'spec/javascript/components')
-rw-r--r-- | spec/javascript/components/avatar.test.jsx | 12 | ||||
-rw-r--r-- | spec/javascript/components/loading_indicator.test.jsx | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/spec/javascript/components/avatar.test.jsx b/spec/javascript/components/avatar.test.jsx new file mode 100644 index 000000000..f69b538a2 --- /dev/null +++ b/spec/javascript/components/avatar.test.jsx @@ -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); + }); +}); diff --git a/spec/javascript/components/loading_indicator.test.jsx b/spec/javascript/components/loading_indicator.test.jsx index b2f9c919e..e62288405 100644 --- a/spec/javascript/components/loading_indicator.test.jsx +++ b/spec/javascript/components/loading_indicator.test.jsx @@ -1,7 +1,5 @@ import { expect } from 'chai'; import { shallow } from 'enzyme'; -import React from 'react'; -global.React = React; import LoadingIndicator from '../../../app/assets/javascripts/components/components/loading_indicator' |