diff --git a/.github/workflows/automation-tests.yml b/.github/workflows/automation-tests.yml index 5e56752ba..160adf8af 100644 --- a/.github/workflows/automation-tests.yml +++ b/.github/workflows/automation-tests.yml @@ -73,3 +73,8 @@ jobs: env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Stop Docker + run: | + docker ps -q | xargs -I {} docker logs {} + docker container kill $(docker ps -q) \ No newline at end of file diff --git a/tests/package.json b/tests/package.json index 6c6f8c2c5..ee50411a7 100644 --- a/tests/package.json +++ b/tests/package.json @@ -19,7 +19,7 @@ "scripts": { "cypress:version": "cypress version", "cypress:verify": "cypress verify", - "cypress:open": "cypress open", + "cypress:open": "cypress open --config baseUrl=http://localhost:3577", "cypress:run": "cypress run", "types": "tsc --noEmit", "e2e": "cypress run",