aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-01-22 09:24:26 +0100
committerChocobozzz <me@florianbigard.com>2020-01-22 09:36:03 +0100
commit6848b9f4b2ff8a49d57d88a8bba3a6b8352d6f7e (patch)
tree20a34944ea13076d1aeed54e135b0cd9cf664171 /server/tests
parentc76130067cb8718bbbe863b672c89a9d22c4a0b3 (diff)
downloadPeerTube-6848b9f4b2ff8a49d57d88a8bba3a6b8352d6f7e.tar.gz
PeerTube-6848b9f4b2ff8a49d57d88a8bba3a6b8352d6f7e.tar.zst
PeerTube-6848b9f4b2ff8a49d57d88a8bba3a6b8352d6f7e.zip
Use a filtered proxy without variables
Diffstat (limited to 'server/tests')
-rw-r--r--server/tests/api/activitypub/refresher.ts6
1 files changed, 1 insertions, 5 deletions
diff --git a/server/tests/api/activitypub/refresher.ts b/server/tests/api/activitypub/refresher.ts
index 2a6be97c6..aa4bc6c0f 100644
--- a/server/tests/api/activitypub/refresher.ts
+++ b/server/tests/api/activitypub/refresher.ts
@@ -91,7 +91,7 @@ describe('Test AP refresher', function () {
91 }) 91 })
92 92
93 it('Should not update a remote video if the remote instance is down', async function () { 93 it('Should not update a remote video if the remote instance is down', async function () {
94 this.timeout(60000) 94 this.timeout(70000)
95 95
96 killallServers([ servers[ 1 ] ]) 96 killallServers([ servers[ 1 ] ])
97 97
@@ -106,10 +106,6 @@ describe('Test AP refresher', function () {
106 106
107 await reRunServer(servers[ 1 ]) 107 await reRunServer(servers[ 1 ])
108 108
109 // Should not refresh the video, even if the last refresh failed (to avoid a loop on dead instances)
110 await getVideo(servers[ 0 ].url, videoUUID3)
111 await waitJobs(servers)
112
113 await getVideo(servers[ 0 ].url, videoUUID3, 200) 109 await getVideo(servers[ 0 ].url, videoUUID3, 200)
114 }) 110 })
115 }) 111 })