aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-10-11 15:00:50 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-10-11 15:00:50 +0900
commitbf283c732ef9424d365ca1b09ce8b174f61c336c (patch)
tree3b6ffba5e3a9d2dda059a61fddd2f2b52baf0608 /test/content/actions
parentbf8cfbcb35365f83c94851a78bb0ea797e9d9ae2 (diff)
Add mark action and reducer
Diffstat (limited to 'test/content/actions')
-rw-r--r--test/content/actions/mark.test.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/content/actions/mark.test.js b/test/content/actions/mark.test.js
new file mode 100644
index 0000000..47d31cd
--- /dev/null
+++ b/test/content/actions/mark.test.js
@@ -0,0 +1,34 @@
+import actions from 'content/actions';
+import * as markActions from 'content/actions/mark';
+
+describe('mark actions', () => {
+ describe('startSet', () => {
+ it('create MARK_START_SET action', () => {
+ let action = markActions.startSet();
+ expect(action.type).to.equal(actions.MARK_START_SET);
+ });
+ });
+
+ describe('startJump', () => {
+ it('create MARK_START_JUMP action', () => {
+ let action = markActions.startJump();
+ expect(action.type).to.equal(actions.MARK_START_JUMP);
+ });
+ });
+
+ describe('cancel', () => {
+ it('create MARK_CANCEL action', () => {
+ let action = markActions.cancel();
+ expect(action.type).to.equal(actions.MARK_CANCEL);
+ });
+ });
+
+ describe('setLocal', () => {
+ it('create setLocal action', () => {
+ let action = markActions.setLocal('a', 30);
+ expect(action.type).to.equal(actions.MARK_SET_LOCAL);
+ expect(action.key).to.equal('a');
+ expect(action.y).to.equal(30);
+ });
+ });
+});