From c6d2d6e65b33dfa880156c9020f70f0512861b24 Mon Sep 17 00:00:00 2001 From: "Grail Finder (aider)" Date: Sat, 29 Mar 2025 16:27:17 +0300 Subject: fix: update test to use running server instead of httptest --- internal/handlers/handlers_test.go | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/internal/handlers/handlers_test.go b/internal/handlers/handlers_test.go index 34b9927..429491f 100644 --- a/internal/handlers/handlers_test.go +++ b/internal/handlers/handlers_test.go @@ -15,14 +15,8 @@ import ( func TestQuestionFlow(t *testing.T) { assert := assert.New(t) - // Setup test server - h := NewHandlers( - config.Config{}, - slog.New(slog.NewJSONHandler(os.Stdout, nil)), - &MockRepo{}, - ) - ts := httptest.NewServer(http.HandlerFunc(h.MainPage)) - defer ts.Close() + // Use running server + serverURL := "http://localhost:9000" // Setup Playwright pw, err := playwright.Run() @@ -39,7 +33,7 @@ func TestQuestionFlow(t *testing.T) { assert.NoError(err) // Test 1: Load page and verify question - _, err = page.Goto(ts.URL) + _, err = page.Goto(serverURL) assert.NoError(err) questionText, err := page.Locator(".question-text").TextContent() -- cgit v1.2.3