adapt v2: getTask, getTasks, clearCompleted, addTask, deleteTask, getUser, getUserAnonymized, scoreTask (challenge part missing)

This commit is contained in:
Matteo Pagliazzi
2016-04-03 19:03:11 +02:00
parent 58c20c2a64
commit cc65bb1ed7
11 changed files with 309 additions and 160 deletions

View File

@@ -2,18 +2,11 @@ import {
generateUser,
} from '../../../../helpers/api-integration/v2';
xdescribe('GET /user/tasks/', () => {
describe('GET /user/tasks/', () => {
let user;
beforeEach(async () => {
return generateUser({
dailys: [
{text: 'daily', type: 'daily'},
{text: 'daily', type: 'daily'},
{text: 'daily', type: 'daily'},
{text: 'daily', type: 'daily'},
],
}).then((_user) => {
return generateUser().then((_user) => {
user = _user;
});
});
@@ -21,7 +14,7 @@ xdescribe('GET /user/tasks/', () => {
it('gets all tasks', async () => {
return user.get(`/user/tasks/`).then((tasks) => {
expect(tasks).to.be.an('array');
expect(tasks.length).to.be.greaterThan(3);
expect(tasks.length).to.equal(1)
let task = tasks[0];
expect(task.id).to.exist;