Skip to content

Commit

Permalink
fix: fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey28 committed Oct 18, 2022
1 parent c6f06d2 commit ee26086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test-run/commands/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,8 @@ export class OffsetOptions extends ActionOptions {
constructor (obj, validate) {
super();

this.offsetX = null;
this.offsetY = null;
this.isDefaultOffset = null;
this.offsetX = null;
this.offsetY = null;

this._assignFrom(obj, validate);
}
Expand Down
1 change: 1 addition & 0 deletions test/server/test-run-command-options-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ describe('Test run command options', function () {
propertyName: 'invalidProp',
availableProperties: [
'caretPos',
'isDefaultOffset',
'modifiers',
'offsetX',
'offsetY',
Expand Down

0 comments on commit ee26086

Please sign in to comment.