fix linting

This commit is contained in:
Matteo Pagliazzi
2018-02-17 18:41:49 +01:00
parent 80fe58bc6f
commit b619496f8e
6 changed files with 14 additions and 14 deletions
@@ -113,10 +113,10 @@ describe('GET /tasks/user', () => {
await user.sync();
let initialTodoCount = user.tasksOrder.todos.length;
for (let i = 0; i < numberOfTodos; i++) {
for (let i = 0; i < numberOfTodos; i++) { // eslint-disable-line no-await-in-loop
let id = todos[i]._id;
await user.post(`/tasks/${id}/score/up`); // eslint-disable-line no-await-in-loop
await user.post(`/tasks/${id}/score/up`);
}
await user.sync();