From: Chocobozzz Date: Thu, 11 Feb 2021 13:34:44 +0000 (+0100) Subject: Increase logs test timeout X-Git-Tag: v3.1.0-rc.1~131 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;ds=sidebyside;h=ff9112ad21535938940d48d2355ba6ff43b33df8;p=github%2FChocobozzz%2FPeerTube.git Increase logs test timeout --- diff --git a/server/tests/api/server/logs.ts b/server/tests/api/server/logs.ts index 6b1eb776c..bc398ea73 100644 --- a/server/tests/api/server/logs.ts +++ b/server/tests/api/server/logs.ts @@ -30,7 +30,7 @@ describe('Test logs', function () { describe('With the standard log file', function () { it('Should get logs with a start date', async function () { - this.timeout(10000) + this.timeout(20000) await uploadVideo(server.url, server.accessToken, { name: 'video 1' }) await waitJobs([ server ]) @@ -48,7 +48,7 @@ describe('Test logs', function () { }) it('Should get logs with an end date', async function () { - this.timeout(20000) + this.timeout(30000) await uploadVideo(server.url, server.accessToken, { name: 'video 3' }) await waitJobs([ server ]) @@ -72,7 +72,7 @@ describe('Test logs', function () { }) it('Should get filter by level', async function () { - this.timeout(10000) + this.timeout(20000) const now = new Date() @@ -95,6 +95,8 @@ describe('Test logs', function () { }) it('Should log ping requests', async function () { + this.timeout(10000) + const now = new Date() await makePingRequest(server) @@ -125,7 +127,7 @@ describe('Test logs', function () { describe('With the audit log', function () { it('Should get logs with a start date', async function () { - this.timeout(10000) + this.timeout(20000) await uploadVideo(server.url, server.accessToken, { name: 'video 7' }) await waitJobs([ server ]) @@ -151,7 +153,7 @@ describe('Test logs', function () { }) it('Should get logs with an end date', async function () { - this.timeout(20000) + this.timeout(30000) await uploadVideo(server.url, server.accessToken, { name: 'video 9' }) await waitJobs([ server ])