about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorKai Schaper <303@posteo.de>2016-10-10 22:44:06 +0200
committerKai Schaper <303@posteo.de>2016-10-10 22:48:58 +0200
commite0a44556221ab2555731315a033fd18a5c01ef19 (patch)
treedea7cd271fbce16dc11a369e2c39468f6c1d8423 /spec
parent998f161e1d73ee699a99a65fa5e7701ea6602567 (diff)
add sinon; add basic Button component test
Diffstat (limited to 'spec')
-rw-r--r--spec/javascript/components/button.test.jsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/javascript/components/button.test.jsx b/spec/javascript/components/button.test.jsx
new file mode 100644
index 000000000..5610e67dd
--- /dev/null
+++ b/spec/javascript/components/button.test.jsx
@@ -0,0 +1,14 @@
+import { expect } from 'chai';
+import { shallow } from 'enzyme';
+import sinon from 'sinon';
+
+import Button from '../../../app/assets/javascripts/components/components/button'
+
+describe('<Button />', function() {
+  it('simulates click events', function() {
+    const onClick = sinon.spy();
+    const wrapper = shallow(<Button onClick={onClick} />);
+    wrapper.find('button').simulate('click');
+    expect(onClick.calledOnce).to.equal(true);
+  });
+});