summaryrefslogtreecommitdiff
path: root/internal/handlers/handlers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handlers/handlers_test.go')
-rw-r--r--internal/handlers/handlers_test.go12
1 files 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()