fix mongodb tests

v1.18.x
Barış Soner Uşaklı 6 years ago
parent 8ca36ad122
commit 0de60cfdca

@ -64,7 +64,7 @@ mongoModule.helpers.mongo = require('./mongo/helpers');
mongoModule.getConnectionString = function () { mongoModule.getConnectionString = function () {
var usernamePassword = ''; var usernamePassword = '';
var uri = nconf.get('mongo:uri'); var uri = nconf.get('mongo:uri') || '';
if (nconf.get('mongo:username') && nconf.get('mongo:password')) { if (nconf.get('mongo:username') && nconf.get('mongo:password')) {
usernamePassword = nconf.get('mongo:username') + ':' + encodeURIComponent(nconf.get('mongo:password')) + '@'; usernamePassword = nconf.get('mongo:username') + ':' + encodeURIComponent(nconf.get('mongo:password')) + '@';
} else if (!uri.includes('@') || !uri.slice(uri.indexOf('://') + 3, uri.indexOf('@'))) { } else if (!uri.includes('@') || !uri.slice(uri.indexOf('://') + 3, uri.indexOf('@'))) {

Loading…
Cancel
Save