diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-16 09:47:51 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:18 +0200 |
commit | 254d3579f5338f5fd775c17d15cdfc37078bcfb4 (patch) | |
tree | eaeb13fda16c16e98cd6991d202b0ca6a4cbdb63 /server/tests/cli/create-transcoding-job.ts | |
parent | 89d241a79c262b9775c233b73cff080043ebb5e6 (diff) | |
download | PeerTube-254d3579f5338f5fd775c17d15cdfc37078bcfb4.tar.gz PeerTube-254d3579f5338f5fd775c17d15cdfc37078bcfb4.tar.zst PeerTube-254d3579f5338f5fd775c17d15cdfc37078bcfb4.zip |
Use an object to represent a server
Diffstat (limited to 'server/tests/cli/create-transcoding-job.ts')
-rw-r--r-- | server/tests/cli/create-transcoding-job.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/cli/create-transcoding-job.ts b/server/tests/cli/create-transcoding-job.ts index c9bbab802..53f187f90 100644 --- a/server/tests/cli/create-transcoding-job.ts +++ b/server/tests/cli/create-transcoding-job.ts | |||
@@ -5,8 +5,8 @@ import * as chai from 'chai' | |||
5 | import { | 5 | import { |
6 | cleanupTests, | 6 | cleanupTests, |
7 | doubleFollow, | 7 | doubleFollow, |
8 | flushAndRunMultipleServers, | 8 | createMultipleServers, |
9 | ServerInfo, | 9 | PeerTubeServer, |
10 | setAccessTokensToServers, | 10 | setAccessTokensToServers, |
11 | waitJobs | 11 | waitJobs |
12 | } from '../../../shared/extra-utils' | 12 | } from '../../../shared/extra-utils' |
@@ -14,7 +14,7 @@ import { | |||
14 | const expect = chai.expect | 14 | const expect = chai.expect |
15 | 15 | ||
16 | describe('Test create transcoding jobs', function () { | 16 | describe('Test create transcoding jobs', function () { |
17 | let servers: ServerInfo[] = [] | 17 | let servers: PeerTubeServer[] = [] |
18 | const videosUUID: string[] = [] | 18 | const videosUUID: string[] = [] |
19 | 19 | ||
20 | const config = { | 20 | const config = { |
@@ -39,7 +39,7 @@ describe('Test create transcoding jobs', function () { | |||
39 | this.timeout(60000) | 39 | this.timeout(60000) |
40 | 40 | ||
41 | // Run server 2 to have transcoding enabled | 41 | // Run server 2 to have transcoding enabled |
42 | servers = await flushAndRunMultipleServers(2) | 42 | servers = await createMultipleServers(2) |
43 | await setAccessTokensToServers(servers) | 43 | await setAccessTokensToServers(servers) |
44 | 44 | ||
45 | await servers[0].config.updateCustomSubConfig({ newConfig: config }) | 45 | await servers[0].config.updateCustomSubConfig({ newConfig: config }) |