aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-21 11:06:58 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-21 12:47:44 +0900
commit214a5103f3e2914028206a13ba115c69a7ee07f1 (patch)
treef396f94064ae1626ae134e1932316fa11641c7c0 /test/content/actions
parentc2a663a64d23816821d333c0d1c7c7c968f494b0 (diff)
emit mapped keys from input-component
Diffstat (limited to 'test/content/actions')
-rw-r--r--test/content/actions/input.test.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/content/actions/input.test.js b/test/content/actions/input.test.js
index 6031829..30705d2 100644
--- a/test/content/actions/input.test.js
+++ b/test/content/actions/input.test.js
@@ -5,16 +5,10 @@ import * as inputActions from 'content/actions/input';
describe("input actions", () => {
describe("keyPress", () => {
it('create INPUT_KEY_PRESS action', () => {
- let action = inputActions.keyPress('a', false);
+ let action = inputActions.keyPress('a');
expect(action.type).to.equal(actions.INPUT_KEY_PRESS);
expect(action.key).to.equal('a');
});
-
- it('create INPUT_KEY_PRESS action from key with ctrl', () => {
- let action = inputActions.keyPress('b', true);
- expect(action.type).to.equal(actions.INPUT_KEY_PRESS);
- expect(action.key).to.equal('<C-B>');
- });
});
describe("clearKeys", () => {