From 633ac6c04436d4ad2ee5f85cf926f575e2765984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20Karevold=20Gr=C3=B8nhaug?= <jakobkg@stud.ntnu.no> Date: Mon, 17 Apr 2023 14:50:21 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index df3a133..51ae22e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,11 +30,11 @@ e2e-test-ff-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - npm run dev & - - npx cypress run --browser firefox + - npx cypress run --port 4173 --browser firefox e2e-test-chrome-job: # This job runs in the test stage. image: cypress/browsers:latest stage: test # It only starts when the job in the build stage completes successfully. script: - npm run dev & - - npx cypress run --browser chrome + - npx cypress run --port 4173 --browser chrome -- GitLab