diff --git a/test/api/v3/integration/tasks/DELETE-tasks_id.test.js b/test/api/v3/integration/tasks/DELETE-tasks_id.test.js index 91f02b7844..1d3e59ef15 100644 --- a/test/api/v3/integration/tasks/DELETE-tasks_id.test.js +++ b/test/api/v3/integration/tasks/DELETE-tasks_id.test.js @@ -63,5 +63,6 @@ describe('DELETE /tasks/:id', () => { }); it('cannot delete active challenge tasks'); // TODO after challenges are implemented + it('remove a task from user.tasksOrder'); // TODO }); }); diff --git a/test/api/v3/integration/tasks/POST-tasks.test.js b/test/api/v3/integration/tasks/POST-tasks.test.js index cf9eeea123..245cea7d28 100644 --- a/test/api/v3/integration/tasks/POST-tasks.test.js +++ b/test/api/v3/integration/tasks/POST-tasks.test.js @@ -184,7 +184,7 @@ describe('POST /tasks', () => { text: 'an habit', }, { type: 'habit', - text: 'another habit' + text: 'another habit', }]); let updatedUser = await user.get('/user'); @@ -302,7 +302,7 @@ describe('POST /tasks', () => { text: 'a todo', }, { type: 'todo', - text: 'another todo' + text: 'another todo', }]); let updatedUser = await user.get('/user'); @@ -392,7 +392,7 @@ describe('POST /tasks', () => { text: 'a daily', }, { type: 'daily', - text: 'another daily' + text: 'another daily', }]); let updatedUser = await user.get('/user'); @@ -532,7 +532,7 @@ describe('POST /tasks', () => { text: 'a reward', }, { type: 'reward', - text: 'another reward' + text: 'another reward', }]); let updatedUser = await user.get('/user');