Fix tests
This commit is contained in:
parent
7a9f9c4626
commit
0dd57e4d43
2 changed files with 11 additions and 10 deletions
|
@ -36,7 +36,7 @@ async function processActivityPubFollow (job: Bull.Job) {
|
|||
}
|
||||
|
||||
if (payload.assertIsChannel && !targetActor.VideoChannel) {
|
||||
logger.warn('Do not follow %s@%s because it is not a channel.', name, host)
|
||||
logger.warn('Do not follow %s@%s because it is not a channel.', payload.name, host)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -1024,15 +1024,16 @@ describe('Test users notifications', function () {
|
|||
await removeUserSubscription(servers[1].url, servers[1].accessToken, 'user_1_channel@localhost:' + servers[0].port)
|
||||
})
|
||||
|
||||
it('Should notify when a local account is following one of our channel', async function () {
|
||||
this.timeout(10000)
|
||||
|
||||
await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1@localhost:' + servers[0].port)
|
||||
|
||||
await waitJobs(servers)
|
||||
|
||||
await checkNewActorFollow(baseParams, 'account', 'root', 'super root name', myUserName, 'presence')
|
||||
})
|
||||
// PeerTube does not support accout -> account follows
|
||||
// it('Should notify when a local account is following one of our channel', async function () {
|
||||
// this.timeout(10000)
|
||||
//
|
||||
// await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1@localhost:' + servers[0].port)
|
||||
//
|
||||
// await waitJobs(servers)
|
||||
//
|
||||
// await checkNewActorFollow(baseParams, 'account', 'root', 'super root name', myUserName, 'presence')
|
||||
// })
|
||||
|
||||
it('Should notify when a remote account is following one of our channel', async function () {
|
||||
this.timeout(10000)
|
||||
|
|
Loading…
Reference in a new issue