19991: Change cypress url from localhost to 127.0.0.1 to match arvados
authorStephen Smith <stephen@curii.com>
Fri, 18 Aug 2023 21:38:54 +0000 (17:38 -0400)
committerStephen Smith <stephen@curii.com>
Fri, 18 Aug 2023 21:38:54 +0000 (17:38 -0400)
Solves cords cookie issues when testing inline io panel image previews

Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

tools/run-integration-tests.sh

index 367ccecd3512d90f261adc30b85405aac3f6176a..1f2b7c5ee585a0b7ec4d9250005a8f5d155472dd 100755 (executable)
@@ -139,10 +139,10 @@ exec 8<&"${wb2[0]}"; coproc consume_wb2_stdout (cat <&8 >&2)
 
 # Wait for workbench2 to be up.
 # Using https-get to avoid false positive 'ready' detection.
-yarn run wait-on --timeout 300000 https-get://localhost:${WB2_PORT} || exit 1
+yarn run wait-on --timeout 300000 https-get://127.0.0.1:${WB2_PORT} || exit 1
 
 echo "Running tests..."
 CYPRESS_system_token=systemusertesttoken1234567890aoeuidhtnsqjkxbmwvzpy \
     CYPRESS_controller_url=${controllerURL} \
-    CYPRESS_BASE_URL=https://localhost:${WB2_PORT} \
+    CYPRESS_BASE_URL=https://127.0.0.1:${WB2_PORT} \
     yarn run cypress ${CYPRESS_MODE}