Run integration tests with both dbs

This commit is contained in:
2025-03-06 21:39:56 +01:00
parent 629baa9952
commit f55d2644c3
7 changed files with 88 additions and 22 deletions

View File

@@ -15,7 +15,11 @@ import (
)
func TestWorkspaceHandlers_Integration(t *testing.T) {
h := setupTestHarness(t)
runWithDatabases(t, testWorkspaceHandlers)
}
func testWorkspaceHandlers(t *testing.T, dbConfig DatabaseConfig) {
h := setupTestHarness(t, dbConfig)
defer h.teardown(t)
t.Run("list workspaces", func(t *testing.T) {