Increase test timeout

pull/5215/head
Chocobozzz 2022-08-16 14:49:16 +02:00
parent 37229de26e
commit 7804e577de
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 3 additions and 3 deletions

View File

@ -146,7 +146,7 @@ class StatsCard extends Component {
: undefined
const resolution = level?.height
? `${level?.height}p${level?.attrs['FRAME-RATE'] || ''}`
? `${level.height}p${level?.attrs['FRAME-RATE'] || ''}`
: undefined
const buffer = this.timeRangesToString(this.player().buffered())

View File

@ -99,7 +99,7 @@ describe('Permanent live', function () {
})
it('Should stream into this permanent live', async function () {
this.timeout(120000)
this.timeout(240_000)
const beforePublication = new Date()
const ffmpegCommand = await servers[0].live.sendRTMPStreamInVideo({ videoId: videoUUID })

View File

@ -19,7 +19,7 @@ describe('Test jobs', function () {
let servers: PeerTubeServer[]
before(async function () {
this.timeout(120000)
this.timeout(240000)
servers = await createMultipleServers(2)