Fix tests semi eslint rule [MAILPOET-1030]

This commit is contained in:
stoletniy
2017-09-04 09:28:47 +03:00
committed by pavel-mailpoet
parent ec44b84cc9
commit 998795e0e0
6 changed files with 9 additions and 10 deletions

View File

@ -265,9 +265,9 @@ define([
beforeEach(function () {
onStub = sinon.stub()
global.stubChannel(EditorApplication, {on: onStub})
model = {set: sinon.stub(), toJSON: sinon.stub()}
onStub = sinon.stub();
global.stubChannel(EditorApplication, {on: onStub});
model = {set: sinon.stub(), toJSON: sinon.stub()};
view = new (ButtonBlock.ButtonBlockView)({model: model});
view.render();
});