Correctly terminate an ended live

This commit is contained in:
Chocobozzz
2022-11-15 08:55:27 +01:00
parent 90dbc73132
commit c241947630
6 changed files with 50 additions and 21 deletions

View File

@@ -76,7 +76,7 @@ describe('Test video views/viewers counters', function () {
let command: FfmpegCommand
before(async function () {
this.timeout(120000);
this.timeout(240000);
({ vodVideoId, liveVideoId, ffmpegCommand: command } = await prepareViewsVideos({ servers, live: true, vod: true }))
})

View File

@@ -20,7 +20,7 @@ describe('Test views overall stats', function () {
let command: FfmpegCommand
before(async function () {
this.timeout(120000);
this.timeout(240000);
({ vodVideoId, liveVideoId, ffmpegCommand: command } = await prepareViewsVideos({ servers, live: true, vod: true }))
})
@@ -179,7 +179,7 @@ describe('Test views overall stats', function () {
let before2Watchers: Date
before(async function () {
this.timeout(120000);
this.timeout(240000);
({ vodVideoId: videoUUID } = await prepareViewsVideos({ servers, live: true, vod: true }))
})

View File

@@ -17,7 +17,7 @@ describe('Test views retention stats', function () {
let vodVideoId: string
before(async function () {
this.timeout(120000);
this.timeout(240000);
({ vodVideoId } = await prepareViewsVideos({ servers, live: false, vod: true }))
})

View File

@@ -30,7 +30,7 @@ describe('Test views timeserie stats', function () {
let vodVideoId: string
before(async function () {
this.timeout(120000);
this.timeout(240000);
({ vodVideoId } = await prepareViewsVideos({ servers, live: false, vod: true }))
})
@@ -81,7 +81,7 @@ describe('Test views timeserie stats', function () {
}
before(async function () {
this.timeout(120000);
this.timeout(240000);
({ vodVideoId, liveVideoId, ffmpegCommand: command } = await prepareViewsVideos({ servers, live: true, vod: true }))
})