diff options
Diffstat (limited to 'server/tests/api/check-params/video-comments.ts')
-rw-r--r-- | server/tests/api/check-params/video-comments.ts | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/server/tests/api/check-params/video-comments.ts b/server/tests/api/check-params/video-comments.ts index b80d91279..bb14abbfd 100644 --- a/server/tests/api/check-params/video-comments.ts +++ b/server/tests/api/check-params/video-comments.ts | |||
@@ -4,7 +4,7 @@ import * as chai from 'chai' | |||
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { | 5 | import { |
6 | createUser, | 6 | createUser, |
7 | flushTests, killallServers, makeDeleteRequest, makeGetRequest, makePostBodyRequest, runServer, ServerInfo, setAccessTokensToServers, | 7 | flushTests, killallServers, makeDeleteRequest, makeGetRequest, makePostBodyRequest, flushAndRunServer, ServerInfo, setAccessTokensToServers, |
8 | uploadVideo, userLogin | 8 | uploadVideo, userLogin |
9 | } from '../../../../shared/extra-utils' | 9 | } from '../../../../shared/extra-utils' |
10 | import { | 10 | import { |
@@ -29,9 +29,7 @@ describe('Test video comments API validator', function () { | |||
29 | before(async function () { | 29 | before(async function () { |
30 | this.timeout(30000) | 30 | this.timeout(30000) |
31 | 31 | ||
32 | await flushTests() | 32 | server = await flushAndRunServer(1) |
33 | |||
34 | server = await runServer(1) | ||
35 | 33 | ||
36 | await setAccessTokensToServers([ server ]) | 34 | await setAccessTokensToServers([ server ]) |
37 | 35 | ||
@@ -253,12 +251,7 @@ describe('Test video comments API validator', function () { | |||
253 | it('Should return conflict on comment thread add') | 251 | it('Should return conflict on comment thread add') |
254 | }) | 252 | }) |
255 | 253 | ||
256 | after(async function () { | 254 | after(function () { |
257 | killallServers([ server ]) | 255 | killallServers([ server ]) |
258 | |||
259 | // Keep the logs if the test failed | ||
260 | if (this['ok']) { | ||
261 | await flushTests() | ||
262 | } | ||
263 | }) | 256 | }) |
264 | }) | 257 | }) |