Fix indentaition in *.js files (auto-fix by ESLint)

[MAILPOET-1829]
This commit is contained in:
Jan Jakeš
2019-02-20 12:25:33 +01:00
committed by M. Shull
parent a2e89039c6
commit bb658f77ec
67 changed files with 10595 additions and 10595 deletions

View File

@@ -3,13 +3,13 @@ const expect = global.expect;
import EditorApplication from 'newsletter_editor/App';
import ConfigComponent from 'newsletter_editor/components/config';
describe('Config', function () {
it('loads and stores configuration', function () {
var model;
ConfigComponent.setConfig({
testConfig: 'testValue'
});
model = ConfigComponent.getConfig();
expect(model.get('testConfig')).to.equal('testValue');
describe('Config', function () {
it('loads and stores configuration', function () {
var model;
ConfigComponent.setConfig({
testConfig: 'testValue'
});
model = ConfigComponent.getConfig();
expect(model.get('testConfig')).to.equal('testValue');
});
});