X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fvideos%2Fvideo-schedule-update.ts;h=204f436116199b2295cba3d79d60aa15dff14174;hb=134cf2bce96a8c5aefd55154e884964975d8cf23;hp=ecfc5e034cfa53d55ef1357c907a08ce28a8c1f8;hpb=ae28cdf327d782e629379eee1999096ca2a5d74b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/videos/video-schedule-update.ts b/server/tests/api/videos/video-schedule-update.ts index ecfc5e034..204f43611 100644 --- a/server/tests/api/videos/video-schedule-update.ts +++ b/server/tests/api/videos/video-schedule-update.ts @@ -1,23 +1,22 @@ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ import * as chai from 'chai' import 'mocha' import { VideoPrivacy } from '../../../../shared/models/videos' import { + cleanupTests, doubleFollow, flushAndRunMultipleServers, getMyVideos, getVideosList, getVideoWithToken, - killallServers, ServerInfo, setAccessTokensToServers, updateVideo, uploadVideo, wait -} from '../../../../shared/utils' -import { join } from 'path' -import { waitJobs } from '../../../../shared/utils/server/jobs' +} from '../../../../shared/extra-utils' +import { waitJobs } from '../../../../shared/extra-utils/server/jobs' const expect = chai.expect @@ -85,7 +84,7 @@ describe('Test video update scheduler', function () { }) it('Should wait some seconds and have the video in public privacy', async function () { - this.timeout(20000) + this.timeout(50000) await wait(15000) await waitJobs(servers) @@ -167,6 +166,6 @@ describe('Test video update scheduler', function () { }) after(async function () { - killallServers(servers) + await cleanupTests(servers) }) })