diff options
Diffstat (limited to 'server/tests/api/videos/video-description.ts')
-rw-r--r-- | server/tests/api/videos/video-description.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/tests/api/videos/video-description.ts b/server/tests/api/videos/video-description.ts index b89247288..ce45eac80 100644 --- a/server/tests/api/videos/video-description.ts +++ b/server/tests/api/videos/video-description.ts | |||
@@ -2,12 +2,12 @@ | |||
2 | 2 | ||
3 | import 'mocha' | 3 | import 'mocha' |
4 | import * as chai from 'chai' | 4 | import * as chai from 'chai' |
5 | import { cleanupTests, doubleFollow, flushAndRunMultipleServers, ServerInfo, setAccessTokensToServers, waitJobs } from '@shared/extra-utils' | 5 | import { cleanupTests, doubleFollow, createMultipleServers, PeerTubeServer, setAccessTokensToServers, waitJobs } from '@shared/extra-utils' |
6 | 6 | ||
7 | const expect = chai.expect | 7 | const expect = chai.expect |
8 | 8 | ||
9 | describe('Test video description', function () { | 9 | describe('Test video description', function () { |
10 | let servers: ServerInfo[] = [] | 10 | let servers: PeerTubeServer[] = [] |
11 | let videoUUID = '' | 11 | let videoUUID = '' |
12 | let videoId: number | 12 | let videoId: number |
13 | const longDescription = 'my super description for server 1'.repeat(50) | 13 | const longDescription = 'my super description for server 1'.repeat(50) |
@@ -16,7 +16,7 @@ describe('Test video description', function () { | |||
16 | this.timeout(40000) | 16 | this.timeout(40000) |
17 | 17 | ||
18 | // Run servers | 18 | // Run servers |
19 | servers = await flushAndRunMultipleServers(2) | 19 | servers = await createMultipleServers(2) |
20 | 20 | ||
21 | // Get the access tokens | 21 | // Get the access tokens |
22 | await setAccessTokensToServers(servers) | 22 | await setAccessTokensToServers(servers) |