]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Allow to retry some tests that may fail
authorChocobozzz <me@florianbigard.com>
Mon, 15 May 2023 09:41:43 +0000 (11:41 +0200)
committerChocobozzz <me@florianbigard.com>
Mon, 15 May 2023 09:41:55 +0000 (11:41 +0200)
server/tests/api/videos/multiple-servers.ts

index a52a04e07dd1b7b1b7944c447a477df09cbe4693..9d89577cc887b5d5cf05bfca92d21e3db94b724c 100644 (file)
@@ -398,7 +398,9 @@ describe('Test multiple servers', function () {
   })
 
   describe('Should seed the uploaded video', function () {
+
     it('Should add the file 1 by asking server 3', async function () {
+      this.retries(2)
       this.timeout(30000)
 
       const { data } = await servers[2].videos.list()
@@ -413,6 +415,7 @@ describe('Test multiple servers', function () {
     })
 
     it('Should add the file 2 by asking server 1', async function () {
+      this.retries(2)
       this.timeout(30000)
 
       const { data } = await servers[0].videos.list()
@@ -424,6 +427,7 @@ describe('Test multiple servers', function () {
     })
 
     it('Should add the file 3 by asking server 2', async function () {
+      this.retries(2)
       this.timeout(30000)
 
       const { data } = await servers[1].videos.list()