From 20c7392e996775275de47abf8141ebd00968c169 Mon Sep 17 00:00:00 2001 From: Rafael de Mattos Date: Tue, 25 Mar 2025 14:54:17 -0300 Subject: [PATCH] Update Makefile test comments (#34013) The comments are referring to the wrong project section (backend and frontend). --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9933a6ff8d..e8a79d7625 100644 --- a/Makefile +++ b/Makefile @@ -410,12 +410,12 @@ watch-backend: go-check ## watch backend files and continuously rebuild test: test-frontend test-backend ## test everything .PHONY: test-backend -test-backend: ## test frontend files +test-backend: ## test backend files @echo "Running go test with $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..." @$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(GO_TEST_PACKAGES) .PHONY: test-frontend -test-frontend: node_modules ## test backend files +test-frontend: node_modules ## test frontend files npx vitest .PHONY: test-check