Skip to content
Snippets Groups Projects
Verified Commit 03ef97f4 authored by Dave Long's avatar Dave Long
Browse files

Issue #3494332 by catch, berdir, longwave, godotislate, oily, rkoller,...

Issue #3494332 by catch, berdir, longwave, godotislate, oily, rkoller, quietone: Functional Javascript tests are silently skipped on Gitlab CI due to selenium standalone configuration
parent 319a89e4
No related branches found
No related tags found
5 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation
Pipeline #407248 passed with warnings
Pipeline: drupal

#407269

    Pipeline: drupal

    #407264

      Pipeline: drupal

      #407251

        ......@@ -94,8 +94,8 @@ variables:
        SE_NODE_OVERRIDE_MAX_SESSIONS: "true"
        SE_NODE_MAX_SESSIONS: "16"
        SE_SESSION_RETRY_INTERVAL: "1"
        SE_SESSION_REQUEST_TIMEOUT: "10"
        SE_START_XVFB: "false"
        SE_SESSION_REQUEST_TIMEOUT: "60"
        SE_START_XVFB: "true"
        SE_START_VNC: "false"
        .run-tests: &run-tests
        ......
        ......@@ -4,7 +4,6 @@
        namespace Drupal\FunctionalJavascriptTests;
        use Behat\Mink\Exception\DriverException;
        use Drupal\Component\Utility\UrlHelper;
        use Drupal\Tests\BrowserTestBase;
        use Symfony\Component\DependencyInjection\ContainerInterface;
        ......@@ -60,16 +59,12 @@ protected function initMink() {
        try {
        return parent::initMink();
        }
        catch (DriverException $e) {
        if ($this->minkDefaultDriverClass === DrupalSelenium2Driver::class) {
        $this->markTestSkipped("The test wasn't able to connect to your webdriver instance. For more information read core/tests/README.md.\n\nThe original message while starting Mink: {$e->getMessage()}");
        }
        else {
        throw $e;
        }
        }
        catch (\Exception $e) {
        $this->markTestSkipped('An unexpected error occurred while starting Mink: ' . $e->getMessage());
        // If it's not possible to get a mink connection ensure that mink's own
        // destructor is called immediately, to avoid it being called in
        // ::tearDown(), then rethrow the exception.
        $this->mink = NULL;
        throw $e;
        }
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment