Skip to content

Commit

Permalink
fix path for serial and parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobar79 committed Dec 21, 2024
1 parent 7ee9d88 commit 6fd1e1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/run-parallel-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ count=0

until (( count >= max_retries ))
do
./node_modules/.bin/detox test parallel/ -c ios.sim.release --maxWorkers 2 -- --forceExit --bail 1
./node_modules/.bin/detox test ./e2e/parallel/ -c ios.sim.release --maxWorkers 2 -- --forceExit --bail 1
ret_val=$?
if [ $ret_val -eq 0 ]; then
exit 0
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-serial-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ count=0

until (( count >= max_retries ))
do
./node_modules/.bin/detox test serial/ -c ios.sim.release --maxWorkers 1 -- --forceExit --bail 1
./node_modules/.bin/detox test ./e2e/serial/ -c ios.sim.release --maxWorkers 1 -- --forceExit --bail 1
ret_val=$?
if [ $ret_val -eq 0 ]; then
exit 0
Expand Down

0 comments on commit 6fd1e1c

Please sign in to comment.