You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+22-1Lines changed: 22 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# CLI Patterns Makefile
2
2
# Development and testing automation
3
3
4
-
.PHONY: help install test test-unit test-integration test-coverage lint type-check format clean all
4
+
.PHONY: help install test test-unit test-integration test-coverage test-parser test-executor test-design test-fast test-components lint type-check format clean all
5
5
6
6
# Default target
7
7
help:
@@ -12,6 +12,11 @@ help:
12
12
@echo "make test-unit - Run unit tests only"
13
13
@echo "make test-integration - Run integration tests only"
14
14
@echo "make test-coverage - Run tests with coverage report"
15
+
@echo "make test-parser - Run parser component tests"
16
+
@echo "make test-executor - Run executor/execution component tests"
17
+
@echo "make test-design - Run design system tests"
18
+
@echo "make test-fast - Run non-slow tests only"
19
+
@echo "make test-components - Run all component tests (parser, executor, design)"
0 commit comments