aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions
diff options
context:
space:
mode:
Diffstat (limited to 'test/content/actions')
-rw-r--r--test/content/actions/mark.test.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/content/actions/mark.test.js b/test/content/actions/mark.test.js
index 47d31cd..adbf06b 100644
--- a/test/content/actions/mark.test.js
+++ b/test/content/actions/mark.test.js
@@ -25,9 +25,10 @@ describe('mark actions', () => {
describe('setLocal', () => {
it('create setLocal action', () => {
- let action = markActions.setLocal('a', 30);
+ 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);
});
});