mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 23:27:26 +01:00
adapt v2: getTask, getTasks, clearCompleted, addTask, deleteTask, getUser, getUserAnonymized, scoreTask (challenge part missing)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user