From 37b29d34497acdc149c1bfe45dccb63221c40cdc Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Sun, 28 Oct 2018 13:14:49 +0100 Subject: [PATCH] fix(tests): increase timeout --- test/api/v3/integration/groups/GET-groups.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/api/v3/integration/groups/GET-groups.test.js b/test/api/v3/integration/groups/GET-groups.test.js index 080ceeaceb..0baf835a02 100644 --- a/test/api/v3/integration/groups/GET-groups.test.js +++ b/test/api/v3/integration/groups/GET-groups.test.js @@ -203,7 +203,7 @@ describe('GET /groups', () => { let page2 = await expect(user.get('/groups?type=publicGuilds&paginate=true&page=2')) .to.eventually.have.a.lengthOf(1 + 4); // 1 created now, 4 by other tests expect(page2[4].name).to.equal('guild with less members'); - }); + }).timeout(10000); }); it('returns all the user\'s guilds when guilds passed in as query', async () => {