From d1c64fd970fc236b9ba01ac944659051e9e04a99 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 19 May 2023 14:59:15 +0200 Subject: [PATCH] Fix missing wait jobs --- server/tests/api/notifications/comments-notifications.ts | 2 +- server/tests/api/notifications/moderation-notifications.ts | 4 ++-- server/tests/api/notifications/user-notifications.ts | 2 +- server/tests/api/runners/runner-vod-transcoding.ts | 2 ++ server/tests/api/server/auto-follows.ts | 2 +- server/tests/api/users/user-videos.ts | 2 +- server/tests/plugins/plugin-helpers.ts | 2 +- 7 files changed, 9 insertions(+), 7 deletions(-) diff --git a/server/tests/api/notifications/comments-notifications.ts b/server/tests/api/notifications/comments-notifications.ts index 65007193a..0a4bfc5e4 100644 --- a/server/tests/api/notifications/comments-notifications.ts +++ b/server/tests/api/notifications/comments-notifications.ts @@ -170,7 +170,7 @@ describe('Test comments notifications', function () { let baseParams: CheckerBaseParams const byAccountDisplayName = 'super root name' - before(async () => { + before(async function () { baseParams = { server: servers[0], emails, diff --git a/server/tests/api/notifications/moderation-notifications.ts b/server/tests/api/notifications/moderation-notifications.ts index d80de821e..e7a5c47e9 100644 --- a/server/tests/api/notifications/moderation-notifications.ts +++ b/server/tests/api/notifications/moderation-notifications.ts @@ -331,7 +331,7 @@ describe('Test moderation notifications', function () { let config: any let baseParams: CheckerBaseParams - before(async () => { + before(async function () { baseParams = { server: servers[0], emails, @@ -427,7 +427,7 @@ describe('Test moderation notifications', function () { let videoName: string let currentCustomConfig: CustomConfig - before(async () => { + before(async function () { adminBaseParamsServer1 = { server: servers[0], diff --git a/server/tests/api/notifications/user-notifications.ts b/server/tests/api/notifications/user-notifications.ts index 7a8a234c2..55da10265 100644 --- a/server/tests/api/notifications/user-notifications.ts +++ b/server/tests/api/notifications/user-notifications.ts @@ -484,7 +484,7 @@ describe('Test user notifications', function () { const myChannelName = 'super channel name' const myUserName = 'super user name' - before(async () => { + before(async function () { baseParams = { server: servers[0], emails, diff --git a/server/tests/api/runners/runner-vod-transcoding.ts b/server/tests/api/runners/runner-vod-transcoding.ts index 58478ba4a..43e005bbe 100644 --- a/server/tests/api/runners/runner-vod-transcoding.ts +++ b/server/tests/api/runners/runner-vod-transcoding.ts @@ -228,6 +228,8 @@ describe('Test runner VOD transcoding', function () { const payload: VODWebVideoTranscodingSuccess = { videoFile: `video_short_${resolution}p.mp4` } await servers[0].runnerJobs.success({ runnerToken, jobUUID, jobToken, payload }) } + + await waitJobs(servers) }) it('Should have the video updated', async function () { diff --git a/server/tests/api/server/auto-follows.ts b/server/tests/api/server/auto-follows.ts index 99d5c3142..6ce1a3799 100644 --- a/server/tests/api/server/auto-follows.ts +++ b/server/tests/api/server/auto-follows.ts @@ -127,7 +127,7 @@ describe('Test auto follows', function () { const instanceIndexServer = new MockInstancesIndex() let port: number - before(async () => { + before(async function () { port = await instanceIndexServer.initialize() }) diff --git a/server/tests/api/users/user-videos.ts b/server/tests/api/users/user-videos.ts index 0351ae853..696949504 100644 --- a/server/tests/api/users/user-videos.ts +++ b/server/tests/api/users/user-videos.ts @@ -114,7 +114,7 @@ describe('Test user videos', function () { describe('My videos & quotas', function () { it('Should be able to upload a video with a user', async function () { - this.timeout(10000) + this.timeout(30000) const attributes = { name: 'super user video', diff --git a/server/tests/plugins/plugin-helpers.ts b/server/tests/plugins/plugin-helpers.ts index e25992723..a47b7d4d2 100644 --- a/server/tests/plugins/plugin-helpers.ts +++ b/server/tests/plugins/plugin-helpers.ts @@ -287,7 +287,7 @@ describe('Test plugin helpers', function () { let videoUUID: string let videoPath: string - before(async () => { + before(async function () { this.timeout(240000) await servers[0].config.enableTranscoding()