Fix indent rule in tests

[MAILPOET-1029]
This commit is contained in:
Pavel Dohnal
2017-09-07 16:05:45 +01:00
parent 122af1c943
commit 195ccb5eed
19 changed files with 228 additions and 229 deletions

View File

@ -11,7 +11,6 @@
"import/no-amd": 0,
"no-undef": 0,
"one-var": 0,
"indent": 0,
"no-whitespace-before-property": 0,
"global-require": 0,
"keyword-spacing": 0,

View File

@ -4,7 +4,7 @@ define([
'newsletter_editor/blocks/container',
'amd-inject-loader!newsletter_editor/blocks/automatedLatestContent',
'newsletter_editor/components/communication'
], function(
], function(
App,
AutomatedLatestContentBlock,
ContainerBlock,

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/button'
], function(App, ButtonBlock) {
], function(App, ButtonBlock) {
var EditorApplication = App;
describe('Button', function () {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/container'
], function(App, ContainerBlock) {
], function(App, ContainerBlock) {
var EditorApplication = App;
describe('Container', function () {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/divider'
], function(App, DividerBlock) {
], function(App, DividerBlock) {
var EditorApplication = App;
describe('Divider', function () {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/footer'
], function(App, FooterBlock) {
], function(App, FooterBlock) {
var EditorApplication = App;
describe('Footer', function () {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/header'
], function(App, HeaderBlock) {
], function(App, HeaderBlock) {
var EditorApplication = App;
describe('Header', function () {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/image'
], function(App, ImageBlock) {
], function(App, ImageBlock) {
var EditorApplication = App;
describe('Image', function () {

View File

@ -3,7 +3,7 @@ define([
'newsletter_editor/components/communication',
'newsletter_editor/blocks/posts',
'newsletter_editor/blocks/container'
], function(App, Communication, PostsBlock, ContainerBlock) {
], function(App, Communication, PostsBlock, ContainerBlock) {
var EditorApplication = App;
var CommunicationComponent = Communication;

View File

@ -2,7 +2,7 @@ define([
'newsletter_editor/App',
'newsletter_editor/blocks/social',
'backbone'
], function(EditorApplication, SocialBlock, Backbone) {
], function(EditorApplication, SocialBlock, Backbone) {
describe('Social', function () {
describe('block model', function () {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/spacer'
], function(App, SpacerBlock) {
], function(App, SpacerBlock) {
var EditorApplication = App;
describe('Spacer', function () {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/blocks/text'
], function(EditorApplication, TextBlock) {
], function(EditorApplication, TextBlock) {
describe('Text', function () {
describe('model', function () {

View File

@ -2,7 +2,7 @@ define([
'newsletter_editor/App',
'newsletter_editor/components/communication',
'amd-inject-loader!newsletter_editor/components/communication'
], function(EditorApplication, Communication, CommunicationInjector) {
], function(EditorApplication, Communication, CommunicationInjector) {
describe('getPostTypes', function() {
it('fetches post types from the server', function() {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/components/config'
], function(EditorApplication, ConfigComponent) {
], function(EditorApplication, ConfigComponent) {
describe('Config', function () {
it('loads and stores configuration', function() {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/components/content'
], function(App, ContentComponent) {
], function(App, ContentComponent) {
var EditorApplication = App;
describe('Content', function() {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/components/heading'
], function(EditorApplication, HeadingComponent) {
], function(EditorApplication, HeadingComponent) {
describe('Heading', function() {
describe('view', function() {

View File

@ -3,7 +3,7 @@ define([
'newsletter_editor/components/save',
'amd-inject-loader!newsletter_editor/components/save',
'jquery'
], function(App, SaveComponent, SaveInjector, jQuery) {
], function(App, SaveComponent, SaveInjector, jQuery) {
var EditorApplication = App;
describe('Save', function() {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/components/sidebar'
], function(EditorApplication, SidebarComponent) {
], function(EditorApplication, SidebarComponent) {
describe('Sidebar', function() {
describe('content view', function() {

View File

@ -1,7 +1,7 @@
define([
'newsletter_editor/App',
'newsletter_editor/components/styles'
], function(App, StylesComponent) {
], function(App, StylesComponent) {
var EditorApplication = App;
describe('Styles', function () {