Ensure we set a strong password

This commit is contained in:
Johannes Zellner 2016-01-20 20:51:54 +01:00
parent c6d5c43a79
commit 261b1ec561
1 changed files with 2 additions and 2 deletions

View File

@ -59,11 +59,11 @@ describe('Cloudron user creation testing', function () {
});
it('can use reset token to reset password', function () {
cloudron.resetPassword(newUser.resetToken, 'newpassword');
cloudron.resetPassword(newUser.resetToken, 'Strong$%132');
});
it('can login as new user', function () {
cloudron.getOauthToken({ username: 'newuser', email: 'test@cloudron.io', password: 'newpassword' });
cloudron.getOauthToken({ username: 'newuser', email: 'test@cloudron.io', password: 'Strong$%132' });
});
it('can delete the cloudron', function () {