]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/api/search/search-channels.ts
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / search / search-channels.ts
index 8a01aff90a675c44117b974a406af882ec9179f8..67612537c902810e66e6c0c339ab7c9fbaf9b4c2 100644 (file)
@@ -128,6 +128,13 @@ describe('Test channels search', function () {
       expect(body.data[0].displayName).to.equal('Squall channel')
     }
 
+    {
+      const body = await command.advancedChannelSearch({ search: { handles: [ 'squall_channel@' + server.host ] } })
+      expect(body.total).to.equal(1)
+      expect(body.data).to.have.lengthOf(1)
+      expect(body.data[0].displayName).to.equal('Squall channel')
+    }
+
     {
       const body = await command.advancedChannelSearch({ search: { handles: [ 'chocobozzz_channel' ] } })
       expect(body.total).to.equal(0)