Add test postgres db connection

This commit is contained in:
2025-03-06 19:23:24 +01:00
parent 4766a166df
commit 629baa9952
8 changed files with 77 additions and 13 deletions

View File

@@ -61,7 +61,7 @@ func setupTestHarness(t *testing.T) *testHarness {
t.Fatalf("Failed to initialize secrets service: %v", err)
}
database, err := db.NewTestDB(secretsSvc)
database, err := db.NewTestSQLiteDB(secretsSvc)
if err != nil {
t.Fatalf("Failed to initialize test database: %v", err)
}