Moved chained funcitons to multiple lines

This commit is contained in:
David Erwin
2016-11-10 14:52:05 -05:00
parent 26f48196d9
commit d9dc198d46
11 changed files with 131 additions and 69 deletions
+4 -2
View File
@@ -43,11 +43,13 @@ describe('update settings', () => {
return Setting.getSettings();
}).then(settings => {
})
.then(settings => {
// confirm updated settings in db
expect(settings).to.have.property('moderation');
expect(settings.moderation).to.equal('post');
}).catch(err => {
})
.catch(err => {
throw err;
});
});