pa11y-ci-reporter-cli-summary

3.0.0 • Public • Published

Pa11y CI CLI Summary Reporter

Pa11y CI CLI Summary Reporter outputs a summary of Pa11y CI results to stdout - only the URL and a count of the errors/warning/notices for each page - versus the complete results that the built-in CLI reporter outputs. An example screenshot is shown below.

screenshot of Pa11y CI CLI Summary Reporter output

As shown above, in some cases the reported URL is longer than specified for the pa11y-ci analysis, which is used to set the URL column width, so in that case the URL is truncated and the trailing portion is displayed.

Installation

Install Pa11y CI CLI Summary Reporter via npm.

npm install pa11y-ci-reporter-cli-summary

Usage

Pa11y CI CLI Summary Reporter is a Pa11y CI compatible reporter. As with all reporters, it can be specified via the CLI or a Pa11y CI configuration file. Complete details on using reporters can be found in the Pa11y CI documentation.

Using via CLI

The reporter can be used with Pa11y CI via the CLI as follows:

pa11y-ci --reporter=pa11y-ci-reporter-cli-summary https://pa11y.org/

When specified via the CLI:

  • Only one reporter can be used. If multiple reporters are required, they must be specified via a Pa11y CI configuration file.
  • Reporter configuration options cannot be specified and the default values will be used (see below)
  • If a reporter is specified via the CLI it overrides the Pa11y CI configuration file settings for reporters

Using via Configuration File

You can specify reporters in a Pa11y CI configuration file in the defaults.reporters property (an array).

{
  "defaults": {
    "reporters": ["pa11y-ci-reporter-cli-summary"]
  },
  "urls": ["https://pa11y.org/"]
}

The reporter can also be used with one optional configuration option:

  • showPageErrors: A boolean value specifying whether page errors are output with the Pa11y CI results (default: true). Page errors are cases where Pa11y CI fails to execute (e.g. DNS resolution error, execution timeout). A count of the page errors, if any occur, is always shown in the total count.

In this case the reporter is specified as an array, with the first element a string with the reporter name and the second element an object with the configuration options.

{
  "defaults": {
    "reporters": [
      ["pa11y-ci-reporter-cli-summary", { "showPageErrors": false }]
    ]
  },
  "urls": ["https://pa11y.org/"]
}

Multiple reporters can also be used as shown below:

{
  "defaults": {
    "reporters": [
      "pa11y-ci-reporter-cli-summary",
      ["pa11y-ci-reporter-html", { "destination": "./reports" }]
    ]
  },
  "urls": ["https://pa11y.org/"]
}

Package Sidebar

Install

npm i pa11y-ci-reporter-cli-summary

Weekly Downloads

184

Version

3.0.0

License

MIT

Unpacked Size

16.5 kB

Total Files

7

Last publish

Collaborators

  • aarongoldenthal