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
2020-02-20 08:30:41 +01:00

14 lines
273 B
JavaScript

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