aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/live/live.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/live/live.ts')
-rw-r--r--server/tests/api/live/live.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/tests/api/live/live.ts b/server/tests/api/live/live.ts
index 6d504f742..6a1f6e759 100644
--- a/server/tests/api/live/live.ts
+++ b/server/tests/api/live/live.ts
@@ -413,10 +413,10 @@ describe('Test live', function () {
413 await testVideoResolutions(liveVideoId, resolutions) 413 await testVideoResolutions(liveVideoId, resolutions)
414 414
415 await stopFfmpeg(command) 415 await stopFfmpeg(command)
416 await waitUntilLivePublished(servers[0].url, servers[0].accessToken, liveVideoId)
417
418 await waitJobs(servers) 416 await waitJobs(servers)
419 417
418 await waitUntilLivePublished(servers[0].url, servers[0].accessToken, liveVideoId)
419
420 const bitrateLimits = { 420 const bitrateLimits = {
421 720: 5000 * 1000, // 60FPS 421 720: 5000 * 1000, // 60FPS
422 360: 1100 * 1000, 422 360: 1100 * 1000,
@@ -427,6 +427,7 @@ describe('Test live', function () {
427 const resVideo = await getVideo(server.url, liveVideoId) 427 const resVideo = await getVideo(server.url, liveVideoId)
428 const video: VideoDetails = resVideo.body 428 const video: VideoDetails = resVideo.body
429 429
430 expect(video.state.id).to.equal(VideoState.PUBLISHED)
430 expect(video.duration).to.be.greaterThan(1) 431 expect(video.duration).to.be.greaterThan(1)
431 expect(video.files).to.have.lengthOf(0) 432 expect(video.files).to.have.lengthOf(0)
432 433