Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • project/gitlab_templates_downstream
  • issue/gitlab_templates_downstream-3503851
  • issue/gitlab_templates_downstream-3504332
  • issue/gitlab_templates_downstream-3506676
  • issue/gitlab_templates_downstream-3510486
  • issue/gitlab_templates_downstream-3503337
  • issue/gitlab_templates_downstream-3511568
  • issue/gitlab_templates_downstream-3511795
  • issue/gitlab_templates_downstream-3512740
  • issue/gitlab_templates_downstream-3513352
  • issue/gitlab_templates_downstream-3515487
11 results
Show changes
Commits on Source (11)
......@@ -18,6 +18,8 @@ workflow:
- !reference [ .default-workflow ]
# Run on commits to all the principal branches.
- if: $CI_COMMIT_BRANCH =~ /^(d7|d9|d10)-(basic|composer|plus|theme|profile)$/ && $CI_PROJECT_ROOT_NAMESPACE == "project"
# Run if the branch starts with '3503337' - the generic testing issue.
- if: $CI_COMMIT_BRANCH =~ /^3503337/
variables:
# Opt in to just two variants.
......@@ -36,7 +38,7 @@ variables:
- |
$CI_PROJECT_DIR/vendor/bin/drush status | grep version | tr -s ' '
$CI_PROJECT_DIR/vendor/bin/phpunit --version | head -1 | awk '{ print $1 " " $2 }'
echo "Nightwatch$($CI_PROJECT_DIR/$_WEB_ROOT/core/node_modules/.bin/nightwatch --version | head -3 | tail -1 | tr -s ' ')"
echo "Nightwatch$($CI_PROJECT_DIR/$_WEB_ROOT/core/node_modules/.bin/nightwatch --version | grep 'version' | tr -s ' ')"
composer:
variables:
......
......@@ -18,7 +18,8 @@ module.exports = {
.drupalLogin({ name: 'Downy', password: 'Streamer' })
.drupalRelativeURL('/admin/reports')
.waitForElementVisible('body', 1000)
.assert.textContains('h1', 'Reports')
.assert.noDeprecationErrors();
browser.expect.element('h1').text.to.equal('Reports');
},
};