1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/test/e2e/helpers/database-config.js

14 lines
273 B
JavaScript

'use strict';
function getDatabaseUri () {
if (process.env.TEST_DATABASE_URL) {
return process.env.TEST_DATABASE_URL;
} else {
return 'postgres://unleash_user:passord@localhost:5432/unleash_test';
}
}
module.exports = {
getDatabaseUri,
};