diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 083f9dbea381e7fecdaec378512282ba71da6be2..41a1d60893bd60e40e8b6ab67318a4c2fe88b50f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,12 +29,10 @@ e2e-test-ff-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 --port 5173 --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 --port 5173 --browser chrome