79368889

Date: 2025-01-19 11:57:46
Score: 2.5
Natty:
Report link

By the help of a co-worker I've figured-out how to solve it:

cypress.config.js should be:

    reporter: 'junit',
    reporterOptions: {
      mochaFile: 'cypress/results/results-[hash].xml', 
      jenkinsMode: true,
      outputs: true,
      testsuitesTitle: 'Cypress Tests' 
    },

and the top of each test file should be:

describe(Cypress.browser.name + '.' + 'some specific headline', () => {

and that's it, and now my jenkins looks like this:

actual categories instead of just "(root)"

Reasons:
  • Blacklisted phrase (1): how to solve
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: librogil