@@ -23,31 +23,6 @@ test-coverage: # Evaluate code coverage from scripts/test/coverage @Testing
2323test-accessibility : # Run your accessibility tests from scripts/test/accessibility @Testing
2424 make _test name=" accessibility"
2525
26- test-contract : # Run your contract tests from scripts/test/contract @Testing
27- make _test name=" contract"
28-
29- test-integration : # Run your integration tests from scripts/test/integration @Testing
30- make _test name=" integration"
31-
32- test-load : # Run all your load tests @Testing
33- make \
34- test-capacity \
35- test-soak \
36- test-response-time
37- # You may wish to add more here, depending on your app
38-
39- test-capacity : # Test what load level your app fails at from scripts/test/capacity @Testing
40- make _test name=" capacity"
41-
42- test-soak : # Test that resources don't get exhausted over time from scripts/test/soak @Testing
43- make _test name=" soak"
44-
45- test-response-time : # Test your API response times from scripts/test/response-time @Testing
46- make _test name=" response-time"
47-
48- test-security : # Run your security tests from scripts/test/security @Testing
49- make _test name=" security"
50-
5126test-ui-component : # Run your UI tests from scripts/test/ui @Testing
5227 make _test name=" ui-component"
5328
@@ -57,24 +32,16 @@ test-ui-e2e: # Run your UI tests from scripts/test/ui @Testing
5732test-api : # Run your UI tests from scripts/test/ui @Testing
5833 make _test name=" api"
5934
60- test-ui-performance : # Run UI render tests from scripts/test/ui-performance @Testing
61- make _test name=" ui-performance"
62-
6335test : # Run all the test tasks @Testing
6436 make \
6537 test-unit \
6638 test-lint \
6739 test-typecheck \
6840 test-coverage \
69- test-contract \
70- test-security \
7141 test-ui-component \
7242 test-ui-e2e \
7343 test-api \
74- test-ui-performance \
75- test-integration \
7644 test-accessibility \
77- test-load
7845
7946_test :
8047 set -e
@@ -89,18 +56,10 @@ ${VERBOSE}.SILENT: \
8956 _test \
9057 test \
9158 test-accessibility \
92- test-capacity \
93- test-contract \
9459 test-coverage \
95- test-soak \
96- test-integration \
9760 test-lint \
9861 test-typecheck \
99- test-load \
100- test-response-time \
101- test-security \
10262 test-ui-component \
10363 test-api \
10464 test-ui-e2e \
105- test-ui-performance \
10665 test-unit \
0 commit comments