aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-10-08 11:15:06 +0200
committerChocobozzz <me@florianbigard.com>2021-10-11 09:37:26 +0200
commit93a1e67f86be299b7337d229a2c15fbda0a0d6e1 (patch)
treeb0dbb7c57eca6730fb74d4b7a25bc29ded4cd601 /server/tests/api
parent42cc1887afc80e10ff40675621fe683c76537a18 (diff)
downloadPeerTube-93a1e67f86be299b7337d229a2c15fbda0a0d6e1.tar.gz
PeerTube-93a1e67f86be299b7337d229a2c15fbda0a0d6e1.tar.zst
PeerTube-93a1e67f86be299b7337d229a2c15fbda0a0d6e1.zip
Fix channel search with complete handle
Diffstat (limited to 'server/tests/api')
-rw-r--r--server/tests/api/search/search-channels.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/tests/api/search/search-channels.ts b/server/tests/api/search/search-channels.ts
index 8a01aff90..67612537c 100644
--- a/server/tests/api/search/search-channels.ts
+++ b/server/tests/api/search/search-channels.ts
@@ -129,6 +129,13 @@ describe('Test channels search', function () {
129 } 129 }
130 130
131 { 131 {
132 const body = await command.advancedChannelSearch({ search: { handles: [ 'squall_channel@' + server.host ] } })
133 expect(body.total).to.equal(1)
134 expect(body.data).to.have.lengthOf(1)
135 expect(body.data[0].displayName).to.equal('Squall channel')
136 }
137
138 {
132 const body = await command.advancedChannelSearch({ search: { handles: [ 'chocobozzz_channel' ] } }) 139 const body = await command.advancedChannelSearch({ search: { handles: [ 'chocobozzz_channel' ] } })
133 expect(body.total).to.equal(0) 140 expect(body.total).to.equal(0)
134 expect(body.data).to.have.lengthOf(0) 141 expect(body.data).to.have.lengthOf(0)