Cypress
Cypress is a testing framework for Webapps.
Enabling XML Output
Cypress can be configured to produce JUnit XML output by adding the mocha-junit-reporter package to your codebase and modify the config file to add it as a reporter.
cypress.config.js
or similar file.
Now you can run Cypress from the command line with
And from within your CI system the same way
Test Suite Naming
The mocha-junit-reporter
will automatically fill in values for the and name
and class
attributes.
would produce output that looks like this:
The default attributes can be configured with the reporterOptions
argument in the Cypress config.
Last updated