X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fvideos%2Fvideo-playlists.ts;h=9fd48ac7c0b52a5bd971c19a69ab4ffc057965e2;hb=fe98765624cdd6695739bda719fcb726b71c2b2a;hp=424b217fb163149ef01cf4d828f57294b2215015;hpb=65af03a241aa83ab7ba71278b6c99acd26428b8a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/videos/video-playlists.ts b/server/tests/api/videos/video-playlists.ts index 424b217fb..9fd48ac7c 100644 --- a/server/tests/api/videos/video-playlists.ts +++ b/server/tests/api/videos/video-playlists.ts @@ -407,6 +407,25 @@ describe('Test video playlists', function () { expect(data).to.have.lengthOf(1) expect(data[ 0 ].displayName).to.equal('playlist 3') } + + { + const res = await getAccountPlaylistsList(servers[ 1 ].url, 'root', 0, 10, 'createdAt', '3') + + expect(res.body.total).to.equal(1) + + const data: VideoPlaylist[] = res.body.data + expect(data).to.have.lengthOf(1) + expect(data[ 0 ].displayName).to.equal('playlist 3') + } + + { + const res = await getAccountPlaylistsList(servers[ 1 ].url, 'root', 0, 10, 'createdAt', '4') + + expect(res.body.total).to.equal(0) + + const data: VideoPlaylist[] = res.body.data + expect(data).to.have.lengthOf(0) + } }) it('Should not list unlisted or private playlists', async function () {