aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-10-13 22:15:16 +0900
committerGitHub <noreply@github.com>2018-10-13 22:15:16 +0900
commit8b72aac09af476e19da7e482e43769d47d1969b2 (patch)
tree7b5628784afc557e3c887e32c36e5bd49bac90d5 /test/content/actions
parentb09a4d1bae85eea537d80a5077cdd17d849cfaa5 (diff)
parent3c40b74a3e8d87ba310b46e24d6465d48766e3e8 (diff)
Merge pull request #486 from ueokande/jump-marks
Support jump marks
Diffstat (limited to 'test/content/actions')
-rw-r--r--test/content/actions/mark.test.js35
1 files changed, 35 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..adbf06b
--- /dev/null
+++ b/test/content/actions/mark.test.js
@@ -0,0 +1,35 @@
+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', 20, 30);
+ expect(action.type).to.equal(actions.MARK_SET_LOCAL);
+ expect(action.key).to.equal('a');
+ expect(action.x).to.equal(20);
+ expect(action.y).to.equal(30);
+ });
+ });
+});