From 018dc3cd9c5655e534f406f0a84cff7e464bd58e Mon Sep 17 00:00:00 2001
From: Dominik Hebeler <dominik@suma-ev.de>
Date: Fri, 13 May 2022 10:30:06 +0200
Subject: [PATCH] using selenium service for browsertesting

---
 .gitlab/ci/integrationtest.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.gitlab/ci/integrationtest.yml b/.gitlab/ci/integrationtest.yml
index 83fd7e8df..a07a24300 100644
--- a/.gitlab/ci/integrationtest.yml
+++ b/.gitlab/ci/integrationtest.yml
@@ -1,4 +1,7 @@
 integrationtest:
+  services:
+    - name: selenium/standalone-firefox:99.0
+      alias: selenium_standalone_firefox
   stage: integrationtest
   image: 
     name: ${CI_REGISTRY_IMAGE}/$DOCKER_FPM_IMAGE_NAME:$DOCKER_FPM_IMAGE_TAG
@@ -6,6 +9,7 @@ integrationtest:
   variables:
     BRANCH_NAME: $CI_COMMIT_REF_NAME
     COMMIT_NAME: $CI_COMMIT_REF_SLUG
+    SELENIUM_HOST: selenium_standalone_firefox
   dependencies: [] # No artifacts required
   before_script:
     - export COMPOSER_HOME=$(pwd)/metager/.composer
-- 
GitLab