Increase test timeouts

pull/6026/head
Chocobozzz 2023-10-18 15:47:41 +02:00
parent 3546128f95
commit 830907ec93
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 5 additions and 5 deletions

View File

@ -234,7 +234,7 @@ describe('Test video transcoding', function () {
describe('Audio transcoding', function () {
it('Should transcode high bit rate mp3 to proper bit rate', async function () {
this.timeout(60_000)
this.timeout(120_000)
const attributes = {
name: 'mp3_256k',
@ -266,7 +266,7 @@ describe('Test video transcoding', function () {
})
it('Should transcode video with no audio and have no audio itself', async function () {
this.timeout(60_000)
this.timeout(120_000)
const attributes = {
name: 'no_audio',
@ -290,7 +290,7 @@ describe('Test video transcoding', function () {
})
it('Should leave the audio untouched, but properly transcode the video', async function () {
this.timeout(60_000)
this.timeout(120_000)
const attributes = {
name: 'untouched_audio',

View File

@ -537,7 +537,7 @@ describe('Test video playlists', function () {
describe('Element timestamps', function () {
it('Should create a playlist containing different startTimestamp/endTimestamp videos', async function () {
this.timeout(30000)
this.timeout(60000)
const addVideo = (attributes: any) => {
return commands[0].addElement({ playlistId: playlistServer1Id, attributes })

View File

@ -26,7 +26,7 @@ describe('Test a video file replacement', function () {
let uuid: string
before(async function () {
this.timeout(50000)
this.timeout(120000)
servers = await createMultipleServers(2)