refactor(tests): Update all test files to use TestServerSetup pattern

This commit is contained in:
2026-02-10 13:01:12 -05:00
parent f3141f18ef
commit 6c610465eb
14 changed files with 484 additions and 608 deletions
+1 -2
View File
@@ -18,8 +18,7 @@ func TestGoroutineCleanup(t *testing.T) {
t.Logf("Initial goroutine count: %d", initialGoroutines)
// Start server
ts, _, _ := setupTestServer(t)
defer ts.Close()
setup := setupTestServer(t)
// Wait for startup
time.Sleep(200 * time.Millisecond)