1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-07-17 01:32:29 +02:00

fixing DB test for memory DB

This commit is contained in:
Patrik J. Braun
2021-05-11 15:20:36 +02:00
parent 34383c0f3b
commit db53503a04

View File

@ -123,6 +123,8 @@ export class DBTestHelper {
await this.initSQLite();
} else if (this.dbType === DatabaseType.mysql) {
await this.initMySQL();
} else if (this.dbType === DatabaseType.memory) {
Config.Server.Database.type = DatabaseType.memory;
}
}