diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-16 09:04:35 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:18 +0200 |
commit | 89d241a79c262b9775c233b73cff080043ebb5e6 (patch) | |
tree | cb3b6cb431d25d891ef4e02f66c61d252d17048f /server/tests/plugins/plugin-router.ts | |
parent | d23dd9fbfc4d26026352c10f81d2795ceaf2908a (diff) | |
download | PeerTube-89d241a79c262b9775c233b73cff080043ebb5e6.tar.gz PeerTube-89d241a79c262b9775c233b73cff080043ebb5e6.tar.zst PeerTube-89d241a79c262b9775c233b73cff080043ebb5e6.zip |
Shorter server command names
Diffstat (limited to 'server/tests/plugins/plugin-router.ts')
-rw-r--r-- | server/tests/plugins/plugin-router.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/plugins/plugin-router.ts b/server/tests/plugins/plugin-router.ts index 81e18dabd..1c53dd80c 100644 --- a/server/tests/plugins/plugin-router.ts +++ b/server/tests/plugins/plugin-router.ts | |||
@@ -26,7 +26,7 @@ describe('Test plugin helpers', function () { | |||
26 | server = await flushAndRunServer(1) | 26 | server = await flushAndRunServer(1) |
27 | await setAccessTokensToServers([ server ]) | 27 | await setAccessTokensToServers([ server ]) |
28 | 28 | ||
29 | await server.pluginsCommand.install({ path: PluginsCommand.getPluginTestPath('-five') }) | 29 | await server.plugins.install({ path: PluginsCommand.getPluginTestPath('-five') }) |
30 | }) | 30 | }) |
31 | 31 | ||
32 | it('Should answer "pong"', async function () { | 32 | it('Should answer "pong"', async function () { |
@@ -82,7 +82,7 @@ describe('Test plugin helpers', function () { | |||
82 | }) | 82 | }) |
83 | 83 | ||
84 | it('Should remove the plugin and remove the routes', async function () { | 84 | it('Should remove the plugin and remove the routes', async function () { |
85 | await server.pluginsCommand.uninstall({ npmName: 'peertube-plugin-test-five' }) | 85 | await server.plugins.uninstall({ npmName: 'peertube-plugin-test-five' }) |
86 | 86 | ||
87 | for (const path of basePaths) { | 87 | for (const path of basePaths) { |
88 | await makeGetRequest({ | 88 | await makeGetRequest({ |