0
node{

  parallel firstBranch: {
      stage('One'){
cypress run --spec "cypress/e2e/examples/actions.cy.js"
    }},
      stage('Two'){
cypress run --spec "cypress/e2e/examples/addDebts.cy.js"
    }},
    failFast: true
    }

I am trying to run my cypress test in parallel using the Jenkins pipeline but it's not working as it's unable to get the GitHub URL and branch, can someone help me out with how to provide those, I have one branch but need to run two specs files

0 Answers0