From 705437fcc3c0526c14752d2896a976f16ab21a1f Mon Sep 17 00:00:00 2001 From: Samuel K Date: Wed, 16 Sep 2026 21:20:53 +0000 Subject: [PATCH] docs(agents): prefer testify suite for Go unit tests --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index cc3cfc7e6..3010d4418 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -85,6 +85,7 @@ Devsy uses [Ginkgo](https://onsi.github.io/ginkgo/) for Go E2E and integration t - **Idiomatic**: Focus on simplicity, reliability, and efficiency when writing clear, idiomatic Go code. - **Style Guide**: Use the Uber style guide https://github.com/uber-go/guide/blob/master/style.md. +- **Unit Testing**: Prefer using [testify suite](https://github.com/stretchr/testify#suite-package) (`testify/suite`) for writing unit tests. - **Linter**: `golangci-lint` via `task cli:lint` (or `task cli:lint:fix`). Run `task cli:lint:ci` before pushing changes. ### TypeScript / Svelte Code Style