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

Commit

Permalink
[JENKINS-37962] better documentation of the steps
Browse files Browse the repository at this point in the history
  • Loading branch information
scherler committed Sep 16, 2016
1 parent f093dfb commit bacaf45
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/test/js/log-karaoke/parallelStages.js
Expand Up @@ -25,7 +25,9 @@ module.exports = {
.waitForElementVisible('@executer');
});
},
/** Check Job Blue Ocean Pipeline Activity Page has run */
/** Check Job Blue Ocean Pipeline Activity Page has run.
* Check different nodes of the graph, first check that we are in first branch and that we have steps.
* Then change to the second parallel tree and check the same as before for the secondBranch*/
'Step 03': function (browser) {
const blueActivityPage = browser.page.bluePipelineActivity().forJob(jobName, 'jenkins');
// Check the run itself
Expand All @@ -45,10 +47,12 @@ module.exports = {
// we should have now 2 steps
blueRunDetailPage.validateSteps(2);
},
/** Wait for job to end*/
/** Wait for job to end, TODO: then validate that the steps are all marked as finished
* TODO @see {@link https://issues.jenkins-ci.org/browse/JENKINS-37753|JENKINS-37753}
* */
'Step 04': function (browser) {
browser.waitForJobRunEnded(jobName, function () {
// Here will test for JENKINS-37753
});
}
};
};

0 comments on commit bacaf45

Please sign in to comment.