pull/6026/head
Chocobozzz 2023-10-30 09:09:48 +01:00
parent 507467b6a6
commit f108600464
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 9 additions and 2 deletions

View File

@ -134,9 +134,16 @@ describe('Test video update scheduler', function () {
})
it('Should wait some seconds and have the updated video in public privacy', async function () {
this.timeout(20000)
this.timeout(45000)
let total = 0
do {
const res = await servers[0].videos.list()
total = res.total
await wait(500)
} while (total !== 2)
await wait(15000)
await waitJobs(servers)
for (const server of servers) {