Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
[JENKINS-37954] fix the validation of the graph since on the first ru…
Browse files Browse the repository at this point in the history
… we do not have any information yet
  • Loading branch information
scherler committed Sep 6, 2016
1 parent 5e890e4 commit 8b9894f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/test/js/queued.js
Expand Up @@ -44,11 +44,10 @@ module.exports = {
blueRunDetailPage.validateQueued();
},

'Validate queued state and graph on multibranch job': function (browser) {
'Validate queued state on multibranch job': function (browser) {
const blueRunDetailPage = browser.page.bluePipelineRunDetail()
.forRun(multiBranchJob, 'jenkins', 'feature%2F1', 1);
blueRunDetailPage.validateQueued();
blueRunDetailPage.validateGraph();
},

'Test queued jobs - enable executors': function (browser) {
Expand All @@ -57,6 +56,11 @@ module.exports = {
configure.setNumber(browser, 2);
},

'Validate graph on multibranch job': function (browser) {
const blueRunDetailPage = browser.page.bluePipelineRunDetail()
.forRun(multiBranchJob, 'jenkins', 'feature%2F1', 1);
blueRunDetailPage.validateGraph();
},
// FIXME: Disabled because of https://issues.jenkins-ci.org/browse/JENKINS-37843
// to enable remove ! before function
'Validate logConsole on freestyle job': !function (browser) {
Expand Down

0 comments on commit 8b9894f

Please sign in to comment.