diff options
Diffstat (limited to 'server/tests/cli')
-rw-r--r-- | server/tests/cli/update-host.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/cli/update-host.ts b/server/tests/cli/update-host.ts index e31a84156..7e1d3f658 100644 --- a/server/tests/cli/update-host.ts +++ b/server/tests/cli/update-host.ts | |||
@@ -55,13 +55,13 @@ describe('Test update host scripts', function () { | |||
55 | expect(videos).to.have.lengthOf(2) | 55 | expect(videos).to.have.lengthOf(2) |
56 | 56 | ||
57 | for (const video of videos) { | 57 | for (const video of videos) { |
58 | expect(video.files).to.have.lengthOf(5) | 58 | expect(video.files).to.have.lengthOf(4) |
59 | 59 | ||
60 | for (const file of video.files) { | 60 | for (const file of video.files) { |
61 | expect(file.magnetUri).to.contain('localhost%3A9002%2Ftracker%2Fsocket') | 61 | expect(file.magnetUri).to.contain('localhost%3A9002%2Ftracker%2Fsocket') |
62 | expect(file.magnetUri).to.contain('localhost%3A9002%2Fstatic%2Fwebseed%2F') | 62 | expect(file.magnetUri).to.contain('localhost%3A9002%2Fstatic%2Fwebseed%2F') |
63 | 63 | ||
64 | const torrent = await parseTorrentVideo(server, video.uuid, file.resolutionLabel) | 64 | const torrent = await parseTorrentVideo(server, video.uuid, file.resolution) |
65 | expect(torrent.announce[0]).to.equal('ws://localhost:9002/tracker/socket') | 65 | expect(torrent.announce[0]).to.equal('ws://localhost:9002/tracker/socket') |
66 | expect(torrent.urlList[0]).to.contain('http://localhost:9002/static/webseed') | 66 | expect(torrent.urlList[0]).to.contain('http://localhost:9002/static/webseed') |
67 | } | 67 | } |