From d5af778e7dbc8a4a1c39e7ef993778d908b6b6dd Mon Sep 17 00:00:00 2001 From: wojteknowacki <124166231+wojteknowacki@users.noreply.github.com> Date: Mon, 19 Jun 2023 10:00:49 +0200 Subject: [PATCH] test fix - test env deployment yaml fix (#3759) * test fix - redirect url from mailing was not correct, changed url in yaml to have extra slash and removed one * Revert "test fix - redirect url from mailing was not correct, changed url in yaml to have extra slash and removed one" This reverts commit 5312aecd1e36e227447797d428d9640c708d92d6. * test fix - changed cypress baseurl to include needed / in test-env-deploy yaml --- .github/workflows/test-env-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-env-deploy.yml b/.github/workflows/test-env-deploy.yml index 894f28bf1..21c1f86ed 100644 --- a/.github/workflows/test-env-deploy.yml +++ b/.github/workflows/test-env-deploy.yml @@ -219,7 +219,7 @@ jobs: env: API_URI: ${{ steps.api_uri.outputs.custom_api_uri }} APP_MOUNT_URI: ${{ secrets.APP_MOUNT_URI }} - CYPRESS_baseUrl: https://${{needs.deploy.outputs.base_URL}} + CYPRESS_baseUrl: https://${{needs.deploy.outputs.base_URL}}/ CYPRESS_USER_NAME: ${{ secrets.CYPRESS_USER_NAME }} CYPRESS_SECOND_USER_NAME: ${{ secrets.CYPRESS_SECOND_USER_NAME }} CYPRESS_USER_PASSWORD: ${{ secrets.CYPRESS_USER_PASSWORD }}