Fix tests comma-dangle eslint rule [MAILPOET-1028]

This commit is contained in:
stoletniy
2017-07-27 18:14:30 +03:00
committed by pavel-mailpoet
parent 66c6f52646
commit f0c59ff635
21 changed files with 267 additions and 268 deletions

View File

@@ -8,10 +8,10 @@ define([
var view;
beforeEach(function() {
var model = new Backbone.SuperModel({
subject: 'a test subject',
subject: 'a test subject'
});
view = new (HeadingComponent.HeadingView)({
model: model,
model: model
});
});
@@ -24,10 +24,10 @@ define([
beforeEach(function() {
model = new Backbone.SuperModel({
subject: 'a test subject',
preheader: 'a test preheader',
preheader: 'a test preheader'
});
view = new (HeadingComponent.HeadingView)({
model: model,
model: model
});
view.render();
});