npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cypress-xml-reporter

v1.0.1

Published

A JUnit XML reporter for Cypress that includes screenshots, videos, and logs.

Downloads

405

Readme

Cypress XML Reporter

A JUnit XML reporter for Cypress that includes screenshots, videos, and logs on test failures.

CI npm

This reporter works with Testspace to publish CI test results that include:

  1. Captured screenshot of a test failure
  2. Captured video for a suite with one or more failing tests
  3. Logs generated using the cypress terminal reporter

Installation

npm install cypress-xml-reporter --save-dev

Register the plugin in cypress.config.js:

module.exports = defineConfig({
  video: true, // Cypress v13.x defaults to false
  e2e: {
    setupNodeEvents(on, config) {
      require('cypress-xml-reporter/src/plugin') (on);
    }
  }
});

Note that Cypress v13.x defaults the video option to false. This option requires to be true to capture videos for test failures.

Usage

Run Cypress with cypress-xml-reporter:

$ cypress run --reporter cypress_xml_reporter

The generated xml files are by default located at ./results. You may optionally configure a different location by setting the environment variable RESULTS_FOLDER or specifying resultsFolder in the reporterOptions:

$ RESULTS_FOLDER=./path/location cypress run --reporter cypress_xml_reporter

Or

$ cypress run --reporter cypress_xml_reporter --reporter-options "resultsFolder=./path/location"

Or using cypress.config.js:

module.exports = defineConfig({
  video: true, // Cypress v13.x defaults to false
  reporter: 'cypress-xml-reporter',
  reporterOptions: {
    resultsFolder: './path/location'
  },
  e2e: {
    setupNodeEvents(on, config) {
      require('cypress-xml-reporter/src/plugin') (on);
    }
  }
});

Terminal Logging

To capture terminal output as log files the Cypress terminal report package is supported:

npm install cypress-terminal-report --save-dev

The package is required to be configured for log specs in separate files, setting the type format as txt. And pass in the defined options (i.e. logsOptions) to the reporter plugin:

setupNodeEvents(on, config) {
  const logsOptions = {
    outputRoot: config.projectRoot + '/cypress/',
    outputTarget: {
      'logs|txt': 'txt',
    }
  };
  require('cypress-terminal-report/src/installLogsPrinter')(on, logsOptions);
  require('cypress-xml-reporter/src/plugin') (on, logsOptions);
}

Note that the terminal report requires an extra installation step to register the log collector.