aboutsummaryrefslogtreecommitdiff
path: root/test/actions/input.test.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-10 22:23:17 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-10 22:23:17 +0900
commit14d13e2c3abdb090431f59970681cdaf95f0a24a (patch)
tree8020b59a358661282d90d2121caa2e647df3d424 /test/actions/input.test.js
parent879b5afe66ee79424c3ffee3951ef1c0b8c86eaa (diff)
add tests for input action/reducer
Diffstat (limited to 'test/actions/input.test.js')
-rw-r--r--test/actions/input.test.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/actions/input.test.js b/test/actions/input.test.js
new file mode 100644
index 0000000..a49a5bc
--- /dev/null
+++ b/test/actions/input.test.js
@@ -0,0 +1,17 @@
+import { expect } from "chai";
+import actions from '../../src/actions';
+import * as inputActions from '../../src/actions/input';
+
+describe("input actions", () => {
+ describe("keyPress", () => {
+ let action = inputActions.keyPress(123, true);
+ expect(action.type).to.equal(actions.INPUT_KEY_PRESS);
+ expect(action.code).to.equal(123);
+ expect(action.ctrl).to.be.true;
+ });
+
+ describe("clearKeys", () => {
+ let action = inputActions.clearKeys();
+ expect(action.type).to.equal(actions.INPUT_CLEAR_KEYS);
+ });
+});