Increase test timeouts
This commit is contained in:
parent
3546128f95
commit
830907ec93
|
@ -234,7 +234,7 @@ describe('Test video transcoding', function () {
|
||||||
describe('Audio transcoding', function () {
|
describe('Audio transcoding', function () {
|
||||||
|
|
||||||
it('Should transcode high bit rate mp3 to proper bit rate', async function () {
|
it('Should transcode high bit rate mp3 to proper bit rate', async function () {
|
||||||
this.timeout(60_000)
|
this.timeout(120_000)
|
||||||
|
|
||||||
const attributes = {
|
const attributes = {
|
||||||
name: 'mp3_256k',
|
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 () {
|
it('Should transcode video with no audio and have no audio itself', async function () {
|
||||||
this.timeout(60_000)
|
this.timeout(120_000)
|
||||||
|
|
||||||
const attributes = {
|
const attributes = {
|
||||||
name: 'no_audio',
|
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 () {
|
it('Should leave the audio untouched, but properly transcode the video', async function () {
|
||||||
this.timeout(60_000)
|
this.timeout(120_000)
|
||||||
|
|
||||||
const attributes = {
|
const attributes = {
|
||||||
name: 'untouched_audio',
|
name: 'untouched_audio',
|
||||||
|
|
|
@ -537,7 +537,7 @@ describe('Test video playlists', function () {
|
||||||
describe('Element timestamps', function () {
|
describe('Element timestamps', function () {
|
||||||
|
|
||||||
it('Should create a playlist containing different startTimestamp/endTimestamp videos', async function () {
|
it('Should create a playlist containing different startTimestamp/endTimestamp videos', async function () {
|
||||||
this.timeout(30000)
|
this.timeout(60000)
|
||||||
|
|
||||||
const addVideo = (attributes: any) => {
|
const addVideo = (attributes: any) => {
|
||||||
return commands[0].addElement({ playlistId: playlistServer1Id, attributes })
|
return commands[0].addElement({ playlistId: playlistServer1Id, attributes })
|
||||||
|
|
|
@ -26,7 +26,7 @@ describe('Test a video file replacement', function () {
|
||||||
let uuid: string
|
let uuid: string
|
||||||
|
|
||||||
before(async function () {
|
before(async function () {
|
||||||
this.timeout(50000)
|
this.timeout(120000)
|
||||||
|
|
||||||
servers = await createMultipleServers(2)
|
servers = await createMultipleServers(2)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue