diff options
author | Chocobozzz <me@florianbigard.com> | 2022-07-29 14:50:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-08-01 14:55:10 +0200 |
commit | 1bb4c9ab2e8b3b3022351b33a82a5e527fa5d4d7 (patch) | |
tree | a6554ee0a3ccc2ae402665b2ecf57bb38fd0ed72 /server/tests/api/transcoding | |
parent | 12d84abeca4917d2f1e3f308010bfcd56d37cb7c (diff) | |
download | PeerTube-1bb4c9ab2e8b3b3022351b33a82a5e527fa5d4d7.tar.gz PeerTube-1bb4c9ab2e8b3b3022351b33a82a5e527fa5d4d7.tar.zst PeerTube-1bb4c9ab2e8b3b3022351b33a82a5e527fa5d4d7.zip |
Add ability to delete a specific video file
Diffstat (limited to 'server/tests/api/transcoding')
-rw-r--r-- | server/tests/api/transcoding/create-transcoding.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/api/transcoding/create-transcoding.ts b/server/tests/api/transcoding/create-transcoding.ts index e3867fdad..b59bef772 100644 --- a/server/tests/api/transcoding/create-transcoding.ts +++ b/server/tests/api/transcoding/create-transcoding.ts | |||
@@ -122,7 +122,7 @@ function runTests (objectStorage: boolean) { | |||
122 | it('Should generate WebTorrent from HLS only video', async function () { | 122 | it('Should generate WebTorrent from HLS only video', async function () { |
123 | this.timeout(60000) | 123 | this.timeout(60000) |
124 | 124 | ||
125 | await servers[0].videos.removeWebTorrentFiles({ videoId: videoUUID }) | 125 | await servers[0].videos.removeAllWebTorrentFiles({ videoId: videoUUID }) |
126 | await waitJobs(servers) | 126 | await waitJobs(servers) |
127 | 127 | ||
128 | await servers[0].videos.runTranscoding({ videoId: videoUUID, transcodingType: 'webtorrent' }) | 128 | await servers[0].videos.runTranscoding({ videoId: videoUUID, transcodingType: 'webtorrent' }) |
@@ -142,7 +142,7 @@ function runTests (objectStorage: boolean) { | |||
142 | it('Should only generate WebTorrent', async function () { | 142 | it('Should only generate WebTorrent', async function () { |
143 | this.timeout(60000) | 143 | this.timeout(60000) |
144 | 144 | ||
145 | await servers[0].videos.removeHLSFiles({ videoId: videoUUID }) | 145 | await servers[0].videos.removeHLSPlaylist({ videoId: videoUUID }) |
146 | await waitJobs(servers) | 146 | await waitJobs(servers) |
147 | 147 | ||
148 | await servers[0].videos.runTranscoding({ videoId: videoUUID, transcodingType: 'webtorrent' }) | 148 | await servers[0].videos.runTranscoding({ videoId: videoUUID, transcodingType: 'webtorrent' }) |