mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-25 07:05:51 +00:00
fix(tests): do not use arrow function when using this
This commit is contained in:
parent
7b5d6b508d
commit
5212ac6394
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ describe('GET /groups/:groupId/invites', () => {
|
|||
});
|
||||
});
|
||||
|
||||
it('supports using req.query.lastId to get more invites', async () => {
|
||||
it('supports using req.query.lastId to get more invites', async function () {
|
||||
this.timeout(30000); // @TODO: times out after 8 seconds
|
||||
let leader = await generateUser({balance: 4});
|
||||
let group = await generateGroup(leader, {type: 'guild', privacy: 'public', name: generateUUID()});
|
||||
|
|
|
|||
Loading…
Reference in a new issue