aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/cli/reset-password.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/cli/reset-password.ts')
-rw-r--r--server/tests/cli/reset-password.ts13
1 files changed, 2 insertions, 11 deletions
diff --git a/server/tests/cli/reset-password.ts b/server/tests/cli/reset-password.ts
index 97a6eae15..a5f958bf7 100644
--- a/server/tests/cli/reset-password.ts
+++ b/server/tests/cli/reset-password.ts
@@ -1,14 +1,5 @@
1import 'mocha' 1import 'mocha'
2import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' 2import { cleanupTests, CLICommand, createUser, flushAndRunServer, ServerInfo, setAccessTokensToServers } from '../../../shared/extra-utils'
3import {
4 cleanupTests,
5 CLICommand,
6 createUser,
7 flushAndRunServer,
8 login,
9 ServerInfo,
10 setAccessTokensToServers
11} from '../../../shared/extra-utils'
12 3
13describe('Test reset password scripts', function () { 4describe('Test reset password scripts', function () {
14 let server: ServerInfo 5 let server: ServerInfo
@@ -27,7 +18,7 @@ describe('Test reset password scripts', function () {
27 const env = server.cliCommand.getEnv() 18 const env = server.cliCommand.getEnv()
28 await CLICommand.exec(`echo coucou | ${env} npm run reset-password -- -u user_1`) 19 await CLICommand.exec(`echo coucou | ${env} npm run reset-password -- -u user_1`)
29 20
30 await login(server.url, server.client, { username: 'user_1', password: 'coucou' }, HttpStatusCode.OK_200) 21 await server.loginCommand.login({ user: { username: 'user_1', password: 'coucou' } })
31 }) 22 })
32 23
33 after(async function () { 24 after(async function () {