diff options
Diffstat (limited to 'server/tests/plugins/html-injection.ts')
-rw-r--r-- | server/tests/plugins/html-injection.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/plugins/html-injection.ts b/server/tests/plugins/html-injection.ts index 0cb89f511..2902c39b7 100644 --- a/server/tests/plugins/html-injection.ts +++ b/server/tests/plugins/html-injection.ts | |||
@@ -4,23 +4,23 @@ import 'mocha' | |||
4 | import * as chai from 'chai' | 4 | import * as chai from 'chai' |
5 | import { | 5 | import { |
6 | cleanupTests, | 6 | cleanupTests, |
7 | flushAndRunServer, | 7 | createSingleServer, |
8 | makeHTMLRequest, | 8 | makeHTMLRequest, |
9 | PluginsCommand, | 9 | PluginsCommand, |
10 | ServerInfo, | 10 | PeerTubeServer, |
11 | setAccessTokensToServers | 11 | setAccessTokensToServers |
12 | } from '../../../shared/extra-utils' | 12 | } from '../../../shared/extra-utils' |
13 | 13 | ||
14 | const expect = chai.expect | 14 | const expect = chai.expect |
15 | 15 | ||
16 | describe('Test plugins HTML injection', function () { | 16 | describe('Test plugins HTML injection', function () { |
17 | let server: ServerInfo = null | 17 | let server: PeerTubeServer = null |
18 | let command: PluginsCommand | 18 | let command: PluginsCommand |
19 | 19 | ||
20 | before(async function () { | 20 | before(async function () { |
21 | this.timeout(30000) | 21 | this.timeout(30000) |
22 | 22 | ||
23 | server = await flushAndRunServer(1) | 23 | server = await createSingleServer(1) |
24 | await setAccessTokensToServers([ server ]) | 24 | await setAccessTokensToServers([ server ]) |
25 | 25 | ||
26 | command = server.plugins | 26 | command = server.plugins |