From b157ce227dead3a97e502a7de659f7d3b1845fb3 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 20 Jun 2023 10:23:27 +0100 Subject: [PATCH] a --- .github/workflows/automation-tests.yml | 5 +++++ tests/package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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",