Update makefile test (#713)

This commit is contained in:
Alex
2026-03-06 15:00:05 +00:00
committed by GitHub
parent 60893b19c6
commit 72464e32b8
3 changed files with 4 additions and 4 deletions
+1
View File
@@ -233,3 +233,4 @@ AGENTS.md
.claude/
.playwright-mcp/
frontend-dist/
node_modules/
+3 -3
View File
@@ -1,4 +1,4 @@
.PHONY: help install dev build preview typecheck test clean up down docker-build refresh restart
.PHONY: help install dev build preview typecheck frontend-test clean up down docker-build refresh restart
# Frontend directory
FRONTEND_DIR := src/frontend
@@ -16,7 +16,7 @@ help:
@echo " build - Build frontend for production"
@echo " preview - Preview production build"
@echo " typecheck - Run TypeScript type checking"
@echo " test - Run frontend unit tests"
@echo " frontend-test - Run frontend unit tests"
@echo " clean - Remove node_modules and build artifacts"
@echo ""
@echo "Backend (Docker):"
@@ -52,7 +52,7 @@ typecheck:
cd $(FRONTEND_DIR) && npm run typecheck
# Run frontend unit tests
test:
frontend-test:
@echo "Running frontend unit tests..."
cd $(FRONTEND_DIR) && npm run test:unit
File diff suppressed because one or more lines are too long