Try to fix github ci

This commit is contained in:
Chocobozzz 2023-08-21 15:04:33 +02:00
parent 0d87602a20
commit ab5f1356b9
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 12 additions and 3 deletions

View File

@ -213,7 +213,16 @@ describe('Test live constraints', function () {
maxDuration: 15,
transcoding: {
enabled: true,
resolutions: ConfigCommand.getCustomConfigResolutions(true)
resolutions: {
'144p': true,
'240p': true,
'360p': false,
'480p': false,
'720p': true,
'1080p': false,
'1440p': false,
'2160p': false
}
}
}
}
@ -225,7 +234,7 @@ describe('Test live constraints', function () {
await waitUntilLiveReplacedByReplayOnAllServers(servers, userVideoLiveoId)
await waitJobs(servers)
await checkSaveReplay(userVideoLiveoId, [ 720, 480, 360, 240, 144 ])
await checkSaveReplay(userVideoLiveoId, [ 720, 240, 144 ])
const session = await servers[0].live.getReplaySession({ videoId: userVideoLiveoId })
expect(session.error).to.equal(LiveVideoError.DURATION_EXCEEDED)

View File

@ -22,7 +22,7 @@ describe('Test video passwords', function () {
let command: VideoPasswordsCommand
before(async function () {
this.timeout(30000)
this.timeout(120000)
server = await createSingleServer(1)