aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/object-storage/videos.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/object-storage/videos.ts')
-rw-r--r--server/tests/api/object-storage/videos.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/tests/api/object-storage/videos.ts b/server/tests/api/object-storage/videos.ts
index 3958bd3d7..6c9c224eb 100644
--- a/server/tests/api/object-storage/videos.ts
+++ b/server/tests/api/object-storage/videos.ts
@@ -10,6 +10,7 @@ import {
10 createMultipleServers, 10 createMultipleServers,
11 createSingleServer, 11 createSingleServer,
12 doubleFollow, 12 doubleFollow,
13 expectLogDoesNotContain,
13 expectStartWith, 14 expectStartWith,
14 killallServers, 15 killallServers,
15 makeRawRequest, 16 makeRawRequest,
@@ -235,6 +236,12 @@ function runTestSuite (options: {
235 } 236 }
236 }) 237 })
237 238
239 it('Should not have downloaded files from object storage', async function () {
240 for (const server of servers) {
241 await expectLogDoesNotContain(server, 'from object storage')
242 }
243 })
244
238 after(async function () { 245 after(async function () {
239 mockObjectStorage.terminate() 246 mockObjectStorage.terminate()
240 247