diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-13 09:43:59 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:18 +0200 |
commit | 6c5065a011b099618681a37bd77eaa7bd3db752e (patch) | |
tree | 352252a00b25013c4b1902f6bcd9668aba295c7b /server/tests/api/redundancy/manage-redundancy.ts | |
parent | 0d8ecb7592577f54012413a2b5a9b159cfc90399 (diff) | |
download | PeerTube-6c5065a011b099618681a37bd77eaa7bd3db752e.tar.gz PeerTube-6c5065a011b099618681a37bd77eaa7bd3db752e.tar.zst PeerTube-6c5065a011b099618681a37bd77eaa7bd3db752e.zip |
Introduce server commands
Diffstat (limited to 'server/tests/api/redundancy/manage-redundancy.ts')
-rw-r--r-- | server/tests/api/redundancy/manage-redundancy.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/server/tests/api/redundancy/manage-redundancy.ts b/server/tests/api/redundancy/manage-redundancy.ts index 363e4cbfe..03857f512 100644 --- a/server/tests/api/redundancy/manage-redundancy.ts +++ b/server/tests/api/redundancy/manage-redundancy.ts | |||
@@ -12,8 +12,7 @@ import { | |||
12 | setAccessTokensToServers, | 12 | setAccessTokensToServers, |
13 | uploadVideo, | 13 | uploadVideo, |
14 | uploadVideoAndGetId, | 14 | uploadVideoAndGetId, |
15 | waitJobs, | 15 | waitJobs |
16 | waitUntilLog | ||
17 | } from '@shared/extra-utils' | 16 | } from '@shared/extra-utils' |
18 | import { VideoPrivacy, VideoRedundanciesTarget } from '@shared/models' | 17 | import { VideoPrivacy, VideoRedundanciesTarget } from '@shared/models' |
19 | 18 | ||
@@ -91,7 +90,7 @@ describe('Test manage videos redundancy', function () { | |||
91 | this.timeout(120000) | 90 | this.timeout(120000) |
92 | 91 | ||
93 | await waitJobs(servers) | 92 | await waitJobs(servers) |
94 | await waitUntilLog(servers[0], 'Duplicated ', 10) | 93 | await servers[0].serversCommand.waitUntilLog('Duplicated ', 10) |
95 | await waitJobs(servers) | 94 | await waitJobs(servers) |
96 | 95 | ||
97 | const body = await commands[1].listVideos({ target: 'remote-videos' }) | 96 | const body = await commands[1].listVideos({ target: 'remote-videos' }) |
@@ -214,7 +213,7 @@ describe('Test manage videos redundancy', function () { | |||
214 | await commands[0].addVideo({ videoId }) | 213 | await commands[0].addVideo({ videoId }) |
215 | 214 | ||
216 | await waitJobs(servers) | 215 | await waitJobs(servers) |
217 | await waitUntilLog(servers[0], 'Duplicated ', 15) | 216 | await servers[0].serversCommand.waitUntilLog('Duplicated ', 15) |
218 | await waitJobs(servers) | 217 | await waitJobs(servers) |
219 | 218 | ||
220 | { | 219 | { |