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")
10
10
all_tests_passed=true
11
11
12
12
# 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)"
16
15
fi
17
16
18
17
# Check if jq is installed
Original file line number Diff line number Diff line change 9
9
"scripts" : {
10
10
"build" : " pnpm run --filter @symfony/ux-map build && pnpm run -r --aggregate-output build" ,
11
11
"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" ,
13
13
"test:browser" : " pnpm run -r --workspace-concurrency=1 test:browser" ,
14
14
"check" : " biome check" ,
15
15
"ci" : " biome ci"
You can’t perform that action at this time.
0 commit comments