X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fvideos%2Fvideo-channels.ts;h=f7cf84618d32304f52adc27a05652c268ce993c9;hb=33b91e53d21fba295ecf516b717fb36e91990771;hp=8e2b7937c5b77566cd6ac20adb9f36289373f5ba;hpb=679f8800cdc0ef925fae9ca26fb2892a8f475ad5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/videos/video-channels.ts b/server/tests/api/videos/video-channels.ts index 8e2b7937c..f7cf84618 100644 --- a/server/tests/api/videos/video-channels.ts +++ b/server/tests/api/videos/video-channels.ts @@ -378,8 +378,6 @@ describe('Test video channels', function () { }) it('Should list the second video channel videos', async function () { - this.timeout(10000) - for (const server of servers) { const channelURI = 'second_video_channel@' + servers[0].host const { total, data } = await server.videos.listByChannel({ handle: channelURI }) @@ -392,16 +390,12 @@ describe('Test video channels', function () { }) it('Should change the video channel of a video', async function () { - this.timeout(10000) - await servers[0].videos.update({ id: videoUUID, attributes: { channelId: servers[0].store.channel.id } }) await waitJobs(servers) }) it('Should list the first video channel videos', async function () { - this.timeout(10000) - for (const server of servers) { { const secondChannelURI = 'second_video_channel@' + servers[0].host @@ -452,8 +446,6 @@ describe('Test video channels', function () { }) it('Should report correct channel views per days', async function () { - this.timeout(10000) - { const { data } = await servers[0].channels.listByAccount({ accountName, withStats: true })