diff options
Diffstat (limited to 'server/tests/api/videos/video-comments.ts')
-rw-r--r-- | server/tests/api/videos/video-comments.ts | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/server/tests/api/videos/video-comments.ts b/server/tests/api/videos/video-comments.ts index 50224ee47..22fd8c058 100644 --- a/server/tests/api/videos/video-comments.ts +++ b/server/tests/api/videos/video-comments.ts | |||
@@ -3,11 +3,9 @@ | |||
3 | import * as chai from 'chai' | 3 | import * as chai from 'chai' |
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' | 5 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' |
6 | import { testImage } from '../../../../shared/extra-utils' | 6 | import { cleanupTests, testImage } from '../../../../shared/extra-utils' |
7 | import { | 7 | import { |
8 | dateIsValid, | 8 | dateIsValid, |
9 | flushTests, | ||
10 | killallServers, | ||
11 | flushAndRunServer, | 9 | flushAndRunServer, |
12 | ServerInfo, | 10 | ServerInfo, |
13 | setAccessTokensToServers, | 11 | setAccessTokensToServers, |
@@ -199,7 +197,7 @@ describe('Test video comments', function () { | |||
199 | expect(res.body.data[1].totalReplies).to.equal(0) | 197 | expect(res.body.data[1].totalReplies).to.equal(0) |
200 | }) | 198 | }) |
201 | 199 | ||
202 | after(function () { | 200 | after(async function () { |
203 | killallServers([ server ]) | 201 | await cleanupTests([ server ]) |
204 | }) | 202 | }) |
205 | }) | 203 | }) |