0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-04-07 08:14:49 +02:00

Update Makefile test comments (#34013)

The comments are referring to the wrong project section (backend and
frontend).
This commit is contained in:
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

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