Added repositories, made database unit-testable.

This commit is contained in:
Gerald Schmittinger 2025-02-24 01:13:20 +01:00
parent 1a410d8377
commit 0679c16b7d
15 changed files with 1672 additions and 45 deletions

View file

@ -0,0 +1,7 @@
import {initORM} from "../src/orm";
import dotenv from "dotenv";
export async function initializeTests() {
dotenv.config({path: ".env.test"});
await initORM(true);
}