diff options
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') |