We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b3b63 commit 331c761Copy full SHA for 331c761
scripts/ci/fulltest-cypress
@@ -77,6 +77,11 @@ docker-compose up -d --remove-orphans --pull=never fullstack
77
# wait for main container to be healthy
78
bash "$DIR/../wait-healthy" "$(docker-compose ps --all -q fullstack)" 120
79
80
+# Wait for authentik to be healthy, if it exists as a compose service
81
+if [ "$(docker-compose ps --all -q authentik)" != "" ]; then
82
+ bash "$DIR/../wait-healthy" "$(docker-compose ps --all -q authentik)" 90
83
+fi
84
+
85
# Run tests
86
rm -rf "$DIR/../../test/results"
87
docker-compose up --build cypress
0 commit comments