From 20516920d2b72c8a18bc24b9740f7176aa962da2 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 31 Jul 2020 09:58:03 +0200 Subject: [PATCH] Increase timeout for moderation notifications --- .../api/notifications/moderation-notifications.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/tests/api/notifications/moderation-notifications.ts b/server/tests/api/notifications/moderation-notifications.ts index a8517600a..9faaacb91 100644 --- a/server/tests/api/notifications/moderation-notifications.ts +++ b/server/tests/api/notifications/moderation-notifications.ts @@ -78,7 +78,7 @@ describe('Test moderation notifications', function () { }) it('Should send a notification to moderators on local video abuse', async function () { - this.timeout(10000) + this.timeout(20000) const name = 'video for abuse ' + uuidv4() const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name }) @@ -91,7 +91,7 @@ describe('Test moderation notifications', function () { }) it('Should send a notification to moderators on remote video abuse', async function () { - this.timeout(10000) + this.timeout(20000) const name = 'video for abuse ' + uuidv4() const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name }) @@ -107,7 +107,7 @@ describe('Test moderation notifications', function () { }) it('Should send a notification to moderators on local comment abuse', async function () { - this.timeout(10000) + this.timeout(20000) const name = 'video for abuse ' + uuidv4() const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name }) @@ -122,7 +122,7 @@ describe('Test moderation notifications', function () { }) it('Should send a notification to moderators on remote comment abuse', async function () { - this.timeout(10000) + this.timeout(20000) const name = 'video for abuse ' + uuidv4() const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name }) @@ -140,7 +140,7 @@ describe('Test moderation notifications', function () { }) it('Should send a notification to moderators on local account abuse', async function () { - this.timeout(10000) + this.timeout(20000) const username = 'user' + new Date().getTime() const resUser = await createUser({ url: servers[0].url, accessToken: servers[0].accessToken, username, password: 'donald' }) @@ -153,7 +153,7 @@ describe('Test moderation notifications', function () { }) it('Should send a notification to moderators on remote account abuse', async function () { - this.timeout(10000) + this.timeout(20000) const username = 'user' + new Date().getTime() const tmpToken = await generateUserAccessToken(servers[0], username) -- 2.41.0