Update Makefile test comments (#34013)

The comments are referring to the wrong project section (backend and
frontend).
pull/34012/head^2
Rafael de Mattos 2025-03-25 14:54:17 -03:00 committed by GitHub
parent d6e94fa4e4
commit 20c7392e99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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