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
272 B
JavaScript
Raw Normal View History

'use strict';
2016-10-26 10:43:11 +02:00
function getDatabaseUrl() {
if (process.env.TEST_DATABASE_URL) {
return process.env.TEST_DATABASE_URL;
} else {
return 'postgres://unleash_user:passord@localhost:5432/unleash_test';
}
}
2016-07-02 11:54:50 +02:00
module.exports = {
2016-12-03 13:45:22 +01:00
getDatabaseUrl,
};