diff options
Diffstat (limited to 'server/tests/api/redundancy')
-rw-r--r-- | server/tests/api/redundancy/redundancy.ts | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/server/tests/api/redundancy/redundancy.ts b/server/tests/api/redundancy/redundancy.ts index 778611fff..fc5ffbad7 100644 --- a/server/tests/api/redundancy/redundancy.ts +++ b/server/tests/api/redundancy/redundancy.ts | |||
@@ -4,20 +4,26 @@ import * as chai from 'chai' | |||
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { VideoDetails } from '../../../../shared/models/videos' | 5 | import { VideoDetails } from '../../../../shared/models/videos' |
6 | import { | 6 | import { |
7 | checkSegmentHash, | ||
8 | checkVideoFilesWereRemoved, | ||
7 | doubleFollow, | 9 | doubleFollow, |
8 | flushAndRunMultipleServers, | 10 | flushAndRunMultipleServers, |
9 | getFollowingListPaginationAndSort, | 11 | getFollowingListPaginationAndSort, |
10 | getVideo, | 12 | getVideo, |
13 | getVideoWithToken, | ||
11 | immutableAssign, | 14 | immutableAssign, |
12 | killallServers, makeGetRequest, | 15 | killallServers, |
16 | makeGetRequest, | ||
17 | removeVideo, | ||
18 | reRunServer, | ||
13 | root, | 19 | root, |
14 | ServerInfo, | 20 | ServerInfo, |
15 | setAccessTokensToServers, unfollow, | 21 | setAccessTokensToServers, |
22 | unfollow, | ||
16 | uploadVideo, | 23 | uploadVideo, |
17 | viewVideo, | 24 | viewVideo, |
18 | wait, | 25 | wait, |
19 | waitUntilLog, | 26 | waitUntilLog |
20 | checkVideoFilesWereRemoved, removeVideo, getVideoWithToken, reRunServer, checkSegmentHash | ||
21 | } from '../../../../shared/utils' | 27 | } from '../../../../shared/utils' |
22 | import { waitJobs } from '../../../../shared/utils/server/jobs' | 28 | import { waitJobs } from '../../../../shared/utils/server/jobs' |
23 | 29 | ||