diff options
author | buoyantair <buoyantair@protonmail.com> | 2018-11-20 12:33:52 +0530 |
---|---|---|
committer | buoyantair <buoyantair@protonmail.com> | 2018-11-20 12:33:52 +0530 |
commit | 35adc403b7eed6d1309bbce901268a76dd01b6ef (patch) | |
tree | f84d3bfb482b2feee31b2aa5b96d513315b79a47 /server/tests/api | |
parent | bc22d60899e14631cba0fb6450f4e85fc9528293 (diff) | |
download | PeerTube-35adc403b7eed6d1309bbce901268a76dd01b6ef.tar.gz PeerTube-35adc403b7eed6d1309bbce901268a76dd01b6ef.tar.zst PeerTube-35adc403b7eed6d1309bbce901268a76dd01b6ef.zip |
Fix dependency issues
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/server/follow-constraints.ts | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/server/tests/api/server/follow-constraints.ts b/server/tests/api/server/follow-constraints.ts index 3135fc568..8bb073c41 100644 --- a/server/tests/api/server/follow-constraints.ts +++ b/server/tests/api/server/follow-constraints.ts | |||
@@ -2,11 +2,21 @@ | |||
2 | 2 | ||
3 | import * as chai from 'chai' | 3 | import * as chai from 'chai' |
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { doubleFollow, getAccountVideos, getVideo, getVideoChannelVideos, getVideoWithToken } from '../../utils' | 5 | import { |
6 | import { flushAndRunMultipleServers, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../utils/index' | 6 | doubleFollow, |
7 | import { unfollow } from '../../utils/server/follows' | 7 | getAccountVideos, |
8 | import { userLogin } from '../../utils/users/login' | 8 | getVideo, |
9 | import { createUser } from '../../utils/users/users' | 9 | getVideoChannelVideos, |
10 | getVideoWithToken, | ||
11 | flushAndRunMultipleServers, | ||
12 | killallServers, | ||
13 | ServerInfo, | ||
14 | setAccessTokensToServers, | ||
15 | uploadVideo | ||
16 | } from '../../../../shared/utils' | ||
17 | import { unfollow } from '../../../../shared/utils/server/follows' | ||
18 | import { userLogin } from '../../../../shared/utils/users/login' | ||
19 | import { createUser } from '../../../../shared/utils/users/users' | ||
10 | 20 | ||
11 | const expect = chai.expect | 21 | const expect = chai.expect |
12 | 22 | ||