From e59af1cb029a45827686e81379894802bff7af52 Mon Sep 17 00:00:00 2001 From: phg Date: Thu, 14 Aug 2025 09:08:41 +0200 Subject: [PATCH] docs: Enhance testing guidelines to include interactive UI testing --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 51f8cb6..f6d0d32 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -15,7 +15,7 @@ ## Development Guidelines - **Language:** Go using modules. - **Formatting:** run `gofmt -w` on modified Go files. -- **Testing:** practice TDD and run `go test ./...` before committing. +- **Testing:** practice TDD and run `go test ./...` before committing, also Test the Application interactively, to ensure the UI is also correct. - **Linting:** run `golangci-lint run` when available. - **Structure:** keep application code inside `internal/` packages and follow existing patterns for `core`, `tui`, and `utils`. - **Error Handling:** return errors instead of panicking and provide clear messages.