Skip to content

Nightwatch

If your module contains Nightwatch tests, this job will run them.

It will set up a chrome browser and run the tests against it.

The results will be available as a junit artifact within the job.

This job allows for multiple variants to check previous, current and future versions of Drupal.

Web driver versions

Tests on Drupal 11.1 and above run Nightwatch 3.9 and will use Selenium and the latest Chrome W3C-compliant browser. Tests on Drupal 11.0 and below run Nightwatch 2.4 and will continue to use the legacy Chrome driver which is not W3C-compliant.

If your tests with Drupal 11.1+ still need to use the legacy driver, add the following lines to the appropriate Nightwatch job to override the defaults:

  # Set the web driver variables to the legacy values.
  variables:
    DRUPAL_TEST_WEBDRIVER_HOSTNAME: $DRUPAL_TEST_WEBDRIVER_HOSTNAME_LEGACY
    DRUPAL_TEST_WEBDRIVER_PORT: $DRUPAL_TEST_WEBDRIVER_PORT_LEGACY
    DRUPAL_TEST_WEBDRIVER_W3C: "false"