This commit is contained in:
Daniel García Aubert 2019-12-02 12:56:21 +01:00
parent 4c09a70647
commit fb9dce0386

View File

@ -34,19 +34,19 @@ async function stopRedis () {
async function dropDatabase () { async function dropDatabase () {
await exec(`dropdb --if-exists ${TEST_DB}`, { await exec(`dropdb --if-exists ${TEST_DB}`, {
env: Object.assign ({ PGUSER: 'postgres' }, process.env) env: Object.assign({ PGUSER: 'postgres' }, process.env)
}); });
} }
async function createDatabase () { async function createDatabase () {
await exec(`createdb -T template_postgis -EUTF8 "${TEST_DB}"`, { await exec(`createdb -T template_postgis -EUTF8 "${TEST_DB}"`, {
env: Object.assign ({ PGUSER: 'postgres' }, process.env) env: Object.assign({ PGUSER: 'postgres' }, process.env)
}); });
} }
async function createDatabaseExtension () { async function createDatabaseExtension () {
await exec(`psql -c "CREATE EXTENSION IF NOT EXISTS cartodb CASCADE;" ${TEST_DB}`, { await exec(`psql -c "CREATE EXTENSION IF NOT EXISTS cartodb CASCADE;" ${TEST_DB}`, {
env: Object.assign ({ PGUSER: 'postgres' }, process.env) env: Object.assign({ PGUSER: 'postgres' }, process.env)
}); });
} }
@ -71,7 +71,7 @@ async function populateDatabase () {
`; `;
await exec(populateDatabaseCmd, { await exec(populateDatabaseCmd, {
env: Object.assign ({ PGUSER: 'postgres' }, process.env) env: Object.assign({ PGUSER: 'postgres' }, process.env)
}); });
} }