aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions/mark.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-11 16:38:08 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-11 16:38:08 +0900
commitc6288f19d93a05f96274dd172450b8350389c39f (patch)
tree75b5a168af535aa640bc21e70281497915dade63 /test/content/actions/mark.test.ts
parentebfb172520f7077a15cd5d4e865e5d86593c55ac (diff)
Mark set/jump as a clean architecture
Diffstat (limited to 'test/content/actions/mark.test.ts')
-rw-r--r--test/content/actions/mark.test.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/content/actions/mark.test.ts b/test/content/actions/mark.test.ts
index 6c6d59e..f2df367 100644
--- a/test/content/actions/mark.test.ts
+++ b/test/content/actions/mark.test.ts
@@ -22,14 +22,4 @@ describe('mark actions', () => {
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);
- });
- });
});