Increase test timeout
This commit is contained in:
parent
37229de26e
commit
7804e577de
|
@ -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())
|
||||
|
|
|
@ -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 })
|
||||
|
|
|
@ -19,7 +19,7 @@ describe('Test jobs', function () {
|
|||
let servers: PeerTubeServer[]
|
||||
|
||||
before(async function () {
|
||||
this.timeout(120000)
|
||||
this.timeout(240000)
|
||||
|
||||
servers = await createMultipleServers(2)
|
||||
|
||||
|
|
Loading…
Reference in New Issue