diff options
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/videos/video-playlists.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/tests/api/videos/video-playlists.ts b/server/tests/api/videos/video-playlists.ts index 2bb97d7a8..52b32998d 100644 --- a/server/tests/api/videos/video-playlists.ts +++ b/server/tests/api/videos/video-playlists.ts | |||
@@ -236,7 +236,7 @@ describe('Test video playlists', function () { | |||
236 | const playlistFromList = res.body.data[0] as VideoPlaylist | 236 | const playlistFromList = res.body.data[0] as VideoPlaylist |
237 | 237 | ||
238 | const res2 = await getVideoPlaylist(server.url, playlistFromList.uuid) | 238 | const res2 = await getVideoPlaylist(server.url, playlistFromList.uuid) |
239 | const playlistFromGet = res2.body | 239 | const playlistFromGet = res2.body as VideoPlaylist |
240 | 240 | ||
241 | for (const playlist of [ playlistFromGet, playlistFromList ]) { | 241 | for (const playlist of [ playlistFromGet, playlistFromList ]) { |
242 | expect(playlist.id).to.be.a('number') | 242 | expect(playlist.id).to.be.a('number') |
@@ -250,6 +250,7 @@ describe('Test video playlists', function () { | |||
250 | expect(playlist.privacy.label).to.equal('Public') | 250 | expect(playlist.privacy.label).to.equal('Public') |
251 | expect(playlist.type.id).to.equal(VideoPlaylistType.REGULAR) | 251 | expect(playlist.type.id).to.equal(VideoPlaylistType.REGULAR) |
252 | expect(playlist.type.label).to.equal('Regular') | 252 | expect(playlist.type.label).to.equal('Regular') |
253 | expect(playlist.embedPath).to.equal('/video-playlists/embed/' + playlist.uuid) | ||
253 | 254 | ||
254 | expect(playlist.videosLength).to.equal(0) | 255 | expect(playlist.videosLength).to.equal(0) |
255 | 256 | ||