Browse Source

Update Makefile test comments (#34013)

The comments are referring to the wrong project section (backend and
frontend).
pull/34025/head
Rafael de Mattos 9 months ago committed by GitHub
parent
commit
20c7392e99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      Makefile

4
Makefile

@ -410,12 +410,12 @@ watch-backend: go-check ## watch backend files and continuously rebuild
test: test-frontend test-backend ## test everything test: test-frontend test-backend ## test everything
.PHONY: test-backend .PHONY: test-backend
test-backend: ## test frontend files test-backend: ## test backend files
@echo "Running go test with $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..." @echo "Running go test with $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..."
@$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(GO_TEST_PACKAGES) @$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(GO_TEST_PACKAGES)
.PHONY: test-frontend .PHONY: test-frontend
test-frontend: node_modules ## test backend files test-frontend: node_modules ## test frontend files
npx vitest npx vitest
.PHONY: test-check .PHONY: test-check

Loading…
Cancel
Save