fix e2e test

This commit is contained in:
syuilo 2022-04-03 15:14:26 +09:00
parent 395fe7eb4b
commit 433505df48
1 changed files with 5 additions and 1 deletions

View File

@ -209,7 +209,11 @@ export const db = new DataSource({
}); });
export async function initDb() { export async function initDb() {
await db.connect(); if (db.isInitialized) {
// nop
} else {
await db.connect();
}
} }
export async function resetDb() { export async function resetDb() {