]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/cli/reset-password.ts
Introduce CLI command
[github/Chocobozzz/PeerTube.git] / server / tests / cli / reset-password.ts
index a84463b331fbd05ef5b83431b4c93427b8e6c3f7..97a6eae15e9b348a7bca2f265b85d98062f2b083 100644 (file)
@@ -1,16 +1,14 @@
 import 'mocha'
-
+import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
 import {
   cleanupTests,
+  CLICommand,
   createUser,
-  execCLI,
   flushAndRunServer,
-  getEnvCli,
   login,
   ServerInfo,
   setAccessTokensToServers
 } from '../../../shared/extra-utils'
-import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
 
 describe('Test reset password scripts', function () {
   let server: ServerInfo
@@ -26,8 +24,8 @@ describe('Test reset password scripts', function () {
   it('Should change the user password from CLI', async function () {
     this.timeout(60000)
 
-    const env = getEnvCli(server)
-    await execCLI(`echo coucou | ${env} npm run reset-password -- -u user_1`)
+    const env = server.cliCommand.getEnv()
+    await CLICommand.exec(`echo coucou | ${env} npm run reset-password -- -u user_1`)
 
     await login(server.url, server.client, { username: 'user_1', password: 'coucou' }, HttpStatusCode.OK_200)
   })