From 05e69c7f36fdc5c542e6ba3f3aed29a3331833f4 Mon Sep 17 00:00:00 2001 From: Kharec Date: Fri, 9 Jan 2026 18:42:27 +0100 Subject: [PATCH] test: extend requiredPaths and authEndpoints to include new auth endpoints --- internal/e2e/api_documentation_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/internal/e2e/api_documentation_test.go b/internal/e2e/api_documentation_test.go index c00ee7d..0c3a0de 100644 --- a/internal/e2e/api_documentation_test.go +++ b/internal/e2e/api_documentation_test.go @@ -93,6 +93,10 @@ func TestE2E_SwaggerDocumentation(t *testing.T) { "/api/auth/login", "/api/auth/register", "/api/auth/me", + "/api/auth/refresh", + "/api/auth/revoke", + "/api/auth/revoke-all", + "/api/auth/logout", "/api/posts", } @@ -191,6 +195,10 @@ func TestE2E_APIEndpointDocumentation(t *testing.T) { authEndpoints := []string{ "/api/auth/login", "/api/auth/register", + "/api/auth/refresh", + "/api/auth/revoke", + "/api/auth/revoke-all", + "/api/auth/logout", } for _, endpoint := range authEndpoints {