From ff9112ad21535938940d48d2355ba6ff43b33df8 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 11 Feb 2021 14:34:44 +0100 Subject: [PATCH] Increase logs test timeout --- server/tests/api/server/logs.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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 ]) -- 2.41.0