Fixed linting and some tests

This commit is contained in:
Keith Holliday
2016-05-10 10:44:48 -05:00
parent a0939155c9
commit 632a1ebbf3
16 changed files with 64 additions and 42 deletions

View File

@@ -15,7 +15,7 @@ describe('POST /user/mark-pms-read', () => {
await user.update({
'inbox.newMessages': 1,
});
let res = await user.post('/user/mark-pms-read');
await user.post('/user/mark-pms-read');
await user.sync();
expect(user.inbox.newMessages).to.equal(0);
});