aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions/mark.test.ts
diff options
context:
space:
mode:
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);
- });
- });
});