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.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/handlers/handlers_test.go b/internal/handlers/handlers_test.go
index a597d7a..5e89eb3 100644
--- a/internal/handlers/handlers_test.go
+++ b/internal/handlers/handlers_test.go
@@ -2,11 +2,13 @@ package handlers
import (
"context"
+ "log/slog"
"net/http"
"net/http/httptest"
"os"
"testing"
+ "demoon/config"
"github.com/playwright-community/playwright-go"
"github.com/stretchr/testify/assert"
)
@@ -17,7 +19,7 @@ func TestQuestionFlow(t *testing.T) {
// Setup test server
h := NewHandlers(
config.Config{},
- slog.New(slog.NewJSONHandler(os.Stdout, nil),
+ slog.New(slog.NewJSONHandler(os.Stdout, nil)),
&MockRepo{},
)
ts := httptest.NewServer(http.HandlerFunc(h.MainPage))