Skip to content

Commit

Permalink
chore: add two second delay to e2e test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcdo29 committed Apr 19, 2023
1 parent 93cee82 commit dd6256e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions integration/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@
"executor": "nx:run-commands",
"options": {
"commands": [
"while ! nc -q0 localhost 1883 < /dev/null > /dev/null 2>&1; do sleep 10; done",
"while ! nc -q0 localhost 4222 < /dev/null > /dev/null 2>&1; do sleep 10; done",
"while ! nc -q0 localhost 5672 < /dev/null > /dev/null 2>&1; do sleep 10; done",
"while ! nc -q0 localhost 6379 < /dev/null > /dev/null 2>&1; do sleep 10; done"
"while ! nc -q0 localhost 1883 < /dev/null > /dev/null 2>&1; do echo 'No connection., Trying again'; sleep 10; done",
"while ! nc -q0 localhost 4222 < /dev/null > /dev/null 2>&1; do echo 'No connection., Trying again'; sleep 10; done",
"while ! nc -q0 localhost 5672 < /dev/null > /dev/null 2>&1; do echo 'No connection., Trying again'; sleep 10; done",
"while ! nc -q0 localhost 6379 < /dev/null > /dev/null 2>&1; do echo 'No connection., Trying again'; sleep 10; done",
"sleep 2"
],
"parallel": true
"parallel": false
},
"dependsOn": [
{
Expand Down

0 comments on commit dd6256e

Please sign in to comment.