diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-07 09:16:40 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:17 +0200 |
commit | c3d29f694bf8c910f917be655626d0f80871124f (patch) | |
tree | c90dfdc1245c8a9aca49e9ea9c71ed8e6b9dd35f /server/tests/api/users/users.ts | |
parent | 883a9019085ff9013079d6b1539b86f2f519175a (diff) | |
download | PeerTube-c3d29f694bf8c910f917be655626d0f80871124f.tar.gz PeerTube-c3d29f694bf8c910f917be655626d0f80871124f.tar.zst PeerTube-c3d29f694bf8c910f917be655626d0f80871124f.zip |
Introduce follows command
Diffstat (limited to 'server/tests/api/users/users.ts')
-rw-r--r-- | server/tests/api/users/users.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/server/tests/api/users/users.ts b/server/tests/api/users/users.ts index 6bfc7cfe5..92927ea97 100644 --- a/server/tests/api/users/users.ts +++ b/server/tests/api/users/users.ts | |||
@@ -11,7 +11,6 @@ import { | |||
11 | createUser, | 11 | createUser, |
12 | deleteMe, | 12 | deleteMe, |
13 | flushAndRunServer, | 13 | flushAndRunServer, |
14 | follow, | ||
15 | getAccountRatings, | 14 | getAccountRatings, |
16 | getBlacklistedVideosList, | 15 | getBlacklistedVideosList, |
17 | getCustomConfig, | 16 | getCustomConfig, |
@@ -138,7 +137,12 @@ describe('Test users', function () { | |||
138 | 137 | ||
139 | it('Should not be able to follow', async function () { | 138 | it('Should not be able to follow', async function () { |
140 | accessToken = 'my_super_token' | 139 | accessToken = 'my_super_token' |
141 | await follow(server.url, [ 'http://example.com' ], accessToken, HttpStatusCode.UNAUTHORIZED_401) | 140 | |
141 | await server.followsCommand.follow({ | ||
142 | targets: [ 'http://example.com' ], | ||
143 | token: accessToken, | ||
144 | expectedStatus: HttpStatusCode.UNAUTHORIZED_401 | ||
145 | }) | ||
142 | }) | 146 | }) |
143 | 147 | ||
144 | it('Should not be able to unfollow') | 148 | it('Should not be able to unfollow') |