diff --git a/.github/workflows/codeception.yml b/.github/workflows/codeception.yml index 759e1e50..05cbd58e 100644 --- a/.github/workflows/codeception.yml +++ b/.github/workflows/codeception.yml @@ -98,9 +98,7 @@ jobs: - name: Setup Chromium run: | - export DISPLAY=:99 - chromedriver --url-base=/wd/hub & - sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & + nohup $CHROMEWEBDRIVER/chromedriver --url-base=/wd/hub /dev/null 2>&1 & - name: Start Symfony Server run: | @@ -135,7 +133,7 @@ jobs: - name: Tests run: | bin/console cache:warmup --env=test - vendor/bin/codecept run --env github -c ${{ github.workspace }}/lib/test-bundle + vendor/bin/codecept run --env github -c ${{ github.workspace }}/lib/test-bundle tests/Acceptance/ExtJs/ConditionalLogicCest.php:testExtJsConditionalLogicBlockAddition --debug - name: Log Output uses: actions/upload-artifact@v2 diff --git a/tests/_envs/github.yml b/tests/_envs/github.yml index e5734798..a87e262e 100644 --- a/tests/_envs/github.yml +++ b/tests/_envs/github.yml @@ -5,7 +5,6 @@ modules: port: 9515 restart: true wait: 1 - window_size: 1280x1024 capabilities: chromeOptions: args: ['--no-sandbox', '--disable-extensions', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1280,1024']