Fix ESLint newline-per-chained-call in tests

[MAILPOET-1031]
This commit is contained in:
Pavel Dohnal
2017-08-30 15:26:02 +02:00
parent 33733219f6
commit f438eee842
2 changed files with 5 additions and 2 deletions

View File

@@ -93,7 +93,11 @@ define([
expect(model.get('blocks')).to.have.length(1);
expect(model.get('blocks').at(0).get('blocks')).to.have.length(2);
expect(model.get('blocks').at(0).get('blocks').at(1).get('someField')).to.equal('some text 2');
expect(
model.get('blocks').at(0)
.get('blocks').at(1)
.get('someField')
).to.equal('some text 2');
});
});
});