aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/users/blocklist.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/users/blocklist.ts')
-rw-r--r--server/tests/api/users/blocklist.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/server/tests/api/users/blocklist.ts b/server/tests/api/users/blocklist.ts
index 21b9ae4f8..e37dbb5a4 100644
--- a/server/tests/api/users/blocklist.ts
+++ b/server/tests/api/users/blocklist.ts
@@ -195,7 +195,7 @@ describe('Test blocklist', function () {
195 }) 195 })
196 196
197 it('Should hide its comments', async function () { 197 it('Should hide its comments', async function () {
198 const resThreads = await getVideoCommentThreads(servers[0].url, videoUUID1, 0, 5, '-createdAt', servers[0].accessToken) 198 const resThreads = await getVideoCommentThreads(servers[0].url, videoUUID1, 0, 25, '-createdAt', servers[0].accessToken)
199 199
200 const threads: VideoComment[] = resThreads.body.data 200 const threads: VideoComment[] = resThreads.body.data
201 expect(threads).to.have.lengthOf(1) 201 expect(threads).to.have.lengthOf(1)
@@ -467,9 +467,11 @@ describe('Test blocklist', function () {
467 467
468 it('Should hide its comments', async function () { 468 it('Should hide its comments', async function () {
469 for (const token of [ userModeratorToken, servers[0].accessToken ]) { 469 for (const token of [ userModeratorToken, servers[0].accessToken ]) {
470 const resThreads = await getVideoCommentThreads(servers[0].url, videoUUID1, 0, 5, '-createdAt', token) 470 const resThreads = await getVideoCommentThreads(servers[0].url, videoUUID1, 0, 20, '-createdAt', token)
471
472 let threads: VideoComment[] = resThreads.body.data
473 threads = threads.filter(t => t.isDeleted === false)
471 474
472 const threads: VideoComment[] = resThreads.body.data
473 expect(threads).to.have.lengthOf(1) 475 expect(threads).to.have.lengthOf(1)
474 expect(threads[0].totalReplies).to.equal(0) 476 expect(threads[0].totalReplies).to.equal(0)
475 477