From 7b5d6b508def01d37c0c0b9a09554ef5517ceb50 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Sat, 19 May 2018 20:45:56 +0200 Subject: [PATCH] fix(tests): longer timeout for invites --- .../api/v3/integration/groups/GET-groups_groupId_invites.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/api/v3/integration/groups/GET-groups_groupId_invites.test.js b/test/api/v3/integration/groups/GET-groups_groupId_invites.test.js index 2e6a612102..f7eef70a04 100644 --- a/test/api/v3/integration/groups/GET-groups_groupId_invites.test.js +++ b/test/api/v3/integration/groups/GET-groups_groupId_invites.test.js @@ -82,6 +82,7 @@ describe('GET /groups/:groupId/invites', () => { }); it('supports using req.query.lastId to get more invites', async () => { + 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()});