diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-13 11:05:15 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:18 +0200 |
commit | 41d1d075011174e73dccb74006181a92a618d7b4 (patch) | |
tree | 4dc1af0e266977f062cf9716837d04de1cdd628d /server/tests/api/videos/video-nsfw.ts | |
parent | 6c5065a011b099618681a37bd77eaa7bd3db752e (diff) | |
download | PeerTube-41d1d075011174e73dccb74006181a92a618d7b4.tar.gz PeerTube-41d1d075011174e73dccb74006181a92a618d7b4.tar.zst PeerTube-41d1d075011174e73dccb74006181a92a618d7b4.zip |
Introduce login command
Diffstat (limited to 'server/tests/api/videos/video-nsfw.ts')
-rw-r--r-- | server/tests/api/videos/video-nsfw.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/server/tests/api/videos/video-nsfw.ts b/server/tests/api/videos/video-nsfw.ts index c9c3792eb..a30b11ace 100644 --- a/server/tests/api/videos/video-nsfw.ts +++ b/server/tests/api/videos/video-nsfw.ts | |||
@@ -15,8 +15,7 @@ import { | |||
15 | ServerInfo, | 15 | ServerInfo, |
16 | setAccessTokensToServers, | 16 | setAccessTokensToServers, |
17 | updateMyUser, | 17 | updateMyUser, |
18 | uploadVideo, | 18 | uploadVideo |
19 | userLogin | ||
20 | } from '@shared/extra-utils' | 19 | } from '@shared/extra-utils' |
21 | import { BooleanBothQuery, CustomConfig, ResultList, User, Video, VideosOverview } from '@shared/models' | 20 | import { BooleanBothQuery, CustomConfig, ResultList, User, Video, VideosOverview } from '@shared/models' |
22 | 21 | ||
@@ -151,7 +150,7 @@ describe('Test video NSFW policy', function () { | |||
151 | const password = 'my super password' | 150 | const password = 'my super password' |
152 | await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password }) | 151 | await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password }) |
153 | 152 | ||
154 | userAccessToken = await userLogin(server, { username, password }) | 153 | userAccessToken = await server.loginCommand.getAccessToken({ username, password }) |
155 | 154 | ||
156 | const res = await getMyUserInformation(server.url, userAccessToken) | 155 | const res = await getMyUserInformation(server.url, userAccessToken) |
157 | const user = res.body | 156 | const user = res.body |