about summary refs log tree commit diff
path: root/spec/javascript/components/avatar.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascript/components/avatar.test.jsx')
-rw-r--r--spec/javascript/components/avatar.test.jsx12
1 files changed, 12 insertions, 0 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);
+  });
+});