diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-20 14:15:15 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-21 13:35:31 +0200 |
commit | 4d029ef8ec3d5274eeaa3ee6d808eb7035e7faef (patch) | |
tree | 20bcdd660ab4eb731814db3a4a40fffb48ce7482 /server/tests/api/users | |
parent | 7f28f2ddbaeecf451d501e99ded0408c14a33600 (diff) | |
download | PeerTube-4d029ef8ec3d5274eeaa3ee6d808eb7035e7faef.tar.gz PeerTube-4d029ef8ec3d5274eeaa3ee6d808eb7035e7faef.tar.zst PeerTube-4d029ef8ec3d5274eeaa3ee6d808eb7035e7faef.zip |
Add ability for instances to follow any actor
Diffstat (limited to 'server/tests/api/users')
-rw-r--r-- | server/tests/api/users/user-subscriptions.ts | 2 | ||||
-rw-r--r-- | server/tests/api/users/users.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/api/users/user-subscriptions.ts b/server/tests/api/users/user-subscriptions.ts index 565b4bd77..77b99886d 100644 --- a/server/tests/api/users/user-subscriptions.ts +++ b/server/tests/api/users/user-subscriptions.ts | |||
@@ -224,7 +224,7 @@ describe('Test users subscriptions', function () { | |||
224 | it('Should have server 1 follow server 3 and display server 3 videos', async function () { | 224 | it('Should have server 1 follow server 3 and display server 3 videos', async function () { |
225 | this.timeout(60000) | 225 | this.timeout(60000) |
226 | 226 | ||
227 | await servers[0].follows.follow({ targets: [ servers[2].url ] }) | 227 | await servers[0].follows.follow({ hosts: [ servers[2].url ] }) |
228 | 228 | ||
229 | await waitJobs(servers) | 229 | await waitJobs(servers) |
230 | 230 | ||
diff --git a/server/tests/api/users/users.ts b/server/tests/api/users/users.ts index 066da88ee..1419ae820 100644 --- a/server/tests/api/users/users.ts +++ b/server/tests/api/users/users.ts | |||
@@ -103,7 +103,7 @@ describe('Test users', function () { | |||
103 | token = 'my_super_token' | 103 | token = 'my_super_token' |
104 | 104 | ||
105 | await server.follows.follow({ | 105 | await server.follows.follow({ |
106 | targets: [ 'http://example.com' ], | 106 | hosts: [ 'http://example.com' ], |
107 | token, | 107 | token, |
108 | expectedStatus: HttpStatusCode.UNAUTHORIZED_401 | 108 | expectedStatus: HttpStatusCode.UNAUTHORIZED_401 |
109 | }) | 109 | }) |