1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

revert: destroy db at test-init

This commit is contained in:
ivaosthu 2019-10-02 23:02:29 +02:00
parent b5184f8fc0
commit d3fb9f0d09

View File

@ -54,7 +54,7 @@ module.exports = async function init(databaseSchema = 'test', getLogger) {
const options = { const options = {
databaseUrl: require('./database-config').getDatabaseUrl(), databaseUrl: require('./database-config').getDatabaseUrl(),
databaseSchema, databaseSchema,
minPool: 0, minPool: 1,
maxPool: 1, maxPool: 1,
getLogger, getLogger,
}; };
@ -64,6 +64,7 @@ module.exports = async function init(databaseSchema = 'test', getLogger) {
await db.raw(`CREATE SCHEMA IF NOT EXISTS ${options.databaseSchema}`); await db.raw(`CREATE SCHEMA IF NOT EXISTS ${options.databaseSchema}`);
await migrator(options); await migrator(options);
await db.destroy();
const stores = await createStores(options, eventBus); const stores = await createStores(options, eventBus);
await resetDatabase(stores); await resetDatabase(stores);
await setupDatabase(stores); await setupDatabase(stores);