diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-01 16:47:14 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-01 16:47:14 +0200 |
commit | 06c27593386459b0f6b85fc674460ea5af23f7f1 (patch) | |
tree | 37b126b16b9f482e4c36a01d08434c659882521b /server/tests/api/videos/resumable-upload.ts | |
parent | 693c6586cb896a84ff0f897b1c242bcf7bdcbaee (diff) | |
download | PeerTube-06c27593386459b0f6b85fc674460ea5af23f7f1.tar.gz PeerTube-06c27593386459b0f6b85fc674460ea5af23f7f1.tar.zst PeerTube-06c27593386459b0f6b85fc674460ea5af23f7f1.zip |
Fix hooks definition
Diffstat (limited to 'server/tests/api/videos/resumable-upload.ts')
-rw-r--r-- | server/tests/api/videos/resumable-upload.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/tests/api/videos/resumable-upload.ts b/server/tests/api/videos/resumable-upload.ts index af9221c43..4fc3317df 100644 --- a/server/tests/api/videos/resumable-upload.ts +++ b/server/tests/api/videos/resumable-upload.ts | |||
@@ -8,6 +8,7 @@ import { HttpStatusCode } from '@shared/core-utils' | |||
8 | import { | 8 | import { |
9 | buildAbsoluteFixturePath, | 9 | buildAbsoluteFixturePath, |
10 | buildServerDirectory, | 10 | buildServerDirectory, |
11 | cleanupTests, | ||
11 | flushAndRunServer, | 12 | flushAndRunServer, |
12 | getMyUserInformation, | 13 | getMyUserInformation, |
13 | prepareResumableUpload, | 14 | prepareResumableUpload, |
@@ -184,4 +185,7 @@ describe('Test resumable upload', function () { | |||
184 | }) | 185 | }) |
185 | }) | 186 | }) |
186 | 187 | ||
188 | after(async function () { | ||
189 | await cleanupTests([ server ]) | ||
190 | }) | ||
187 | }) | 191 | }) |