adapt v2: fix linting

This commit is contained in:
Matteo Pagliazzi
2016-04-03 19:04:54 +02:00
parent cc65bb1ed7
commit 060e3b1045
2 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ describe('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.equal(1)
expect(tasks.length).to.equal(1);
let task = tasks[0];
expect(task.id).to.exist;