File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,8 @@ PROJECT_DIR=$(dirname "$SCRIPT_DIR")
1010all_tests_passed=true
1111
1212# Check if we have enough arguments
13- if [ $# -eq 2 ]
14- then
15- echo " No arguments supplied, please provide the package's path."
13+ if [ $# -ne 2 ]; then
14+ echo " No arguments supplied, please provide the package's path and the test type (e.g. --unit or --browser)"
1615fi
1716
1817# Check if jq is installed
Original file line number Diff line number Diff line change 99 "scripts" : {
1010 "build" : " pnpm run --filter @symfony/ux-map build && pnpm run -r --aggregate-output build" ,
1111 "test" : " pnpm run -r --workspace-concurrency=1 test" ,
12- "test:unit" : " pnpm run -r test:unit" ,
12+ "test:unit" : " pnpm run -r --aggregate-output test:unit" ,
1313 "test:browser" : " pnpm run -r --workspace-concurrency=1 test:browser" ,
1414 "check" : " biome check" ,
1515 "ci" : " biome ci"
You can’t perform that action at this time.
0 commit comments