diff options
author | Chocobozzz <me@florianbigard.com> | 2021-09-09 09:31:50 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-09-09 09:35:30 +0200 |
commit | 790c2837ddcb443c0f1ea6adcdcb101dfe159d01 (patch) | |
tree | 2f1c957363e1c00475a7ab7c75c09efe61fba004 /server/tests/api/videos | |
parent | b4c945f3c727d1ce5de5a4af69d6dfa14c83468e (diff) | |
download | PeerTube-790c2837ddcb443c0f1ea6adcdcb101dfe159d01.tar.gz PeerTube-790c2837ddcb443c0f1ea6adcdcb101dfe159d01.tar.zst PeerTube-790c2837ddcb443c0f1ea6adcdcb101dfe159d01.zip |
Fix silent 500 after resumable upload
Diffstat (limited to 'server/tests/api/videos')
-rw-r--r-- | server/tests/api/videos/resumable-upload.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/tests/api/videos/resumable-upload.ts b/server/tests/api/videos/resumable-upload.ts index 857859fd3..59970aa94 100644 --- a/server/tests/api/videos/resumable-upload.ts +++ b/server/tests/api/videos/resumable-upload.ts | |||
@@ -113,6 +113,7 @@ describe('Test resumable upload', function () { | |||
113 | it('Should correctly delete files after an upload', async function () { | 113 | it('Should correctly delete files after an upload', async function () { |
114 | const uploadId = await prepareUpload() | 114 | const uploadId = await prepareUpload() |
115 | await sendChunks({ pathUploadId: uploadId }) | 115 | await sendChunks({ pathUploadId: uploadId }) |
116 | await server.videos.endResumableUpload({ pathUploadId: uploadId }) | ||
116 | 117 | ||
117 | expect(await countResumableUploads()).to.equal(0) | 118 | expect(await countResumableUploads()).to.equal(0) |
118 | }) | 119 | }) |