1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 02:09:37 +02:00

Fix build

This commit is contained in:
Chocobozzz 2022-12-29 10:14:43 +01:00
parent d97d36b486
commit 4fe7cde283
No known key found for this signature in database
GPG key ID: 583A612D890159BE
5 changed files with 21 additions and 9 deletions

View file

@ -120,7 +120,7 @@ describe('Object storage for video static file privacy', function () {
// ---------------------------------------------------------------------------
it('Should upload a private video and have appropriate object storage ACL', async function () {
this.timeout(60000)
this.timeout(120000)
{
const { uuid } = await server.videos.quickUpload({ name: 'video', privacy: VideoPrivacy.PRIVATE })
@ -138,7 +138,7 @@ describe('Object storage for video static file privacy', function () {
})
it('Should upload a public video and have appropriate object storage ACL', async function () {
this.timeout(60000)
this.timeout(120000)
const { uuid } = await server.videos.quickUpload({ name: 'video', privacy: VideoPrivacy.UNLISTED })
await waitJobs([ server ])