1
0
Fork 0

Do not generate a random password for test env

This commit is contained in:
Chocobozzz 2016-06-30 21:58:48 +02:00
parent 5189d08aac
commit d14b3e37a2
1 changed files with 12 additions and 1 deletions

View File

@ -81,7 +81,18 @@ function createOAuthUserIfNotExist (callback) {
logger.info('Creating the administrator.')
const username = 'root'
const password = passwordGenerator(8, true)
let password = ''
// Do not generate a random password for tests
if (process.env.NODE_ENV === 'test') {
password = 'test'
if (process.env.NODE_APP_INSTANCE) {
password += process.env.NODE_APP_INSTANCE
}
} else {
password = passwordGenerator(8, true)
}
Users.createUser(username, password, function (err) {
if (err) return callback(err)