Fork de pa11y-reporter-junit pour accepter la version ^6 de pa11y
Go to file
Rudy Masson bee8eab3f4 debug2 2022-11-17 10:45:57 +01:00
lib debug2 2022-11-17 10:45:57 +01:00
test/unit Update report format to a more readable one 2019-03-22 11:15:06 +01:00
.editorconfig Initial commit 2019-03-13 22:25:39 +01:00
.eslintignore Initial commit 2019-03-13 22:25:39 +01:00
.eslintrc.js Initial commit 2019-03-13 22:25:39 +01:00
.gitignore Initial commit 2019-03-13 22:25:39 +01:00
.travis.yml Initial commit 2019-03-13 22:25:39 +01:00
CHANGELOG.md Initial commit 2019-03-13 22:25:39 +01:00
CONTRIBUTING.md Initial commit 2019-03-13 22:25:39 +01:00
LICENSE Initial commit 2019-03-13 22:25:39 +01:00
Makefile Initial commit 2019-03-13 22:25:39 +01:00
Makefile.node Initial commit 2019-03-13 22:25:39 +01:00
README.md Fix an error in README 2019-03-17 00:08:20 +01:00
package-lock.json Update dev dependencies 2019-03-17 00:08:20 +01:00
package.json Bump version to 1.1.0 2019-03-22 11:15:45 +01:00

README.md

Pa11y JUnit Reporter

A JUnit reporter for Pa11y 5.0.

NPM version Build status LGPL-3.0 licensed

Table Of Contents

Requirements

Pa11y JUnit Reporter is compatible with Pa11y 5.0. It will not work with older versions of Pa11y.

Usage

Command-Line

Install Pa11y and Pa11y JUnit Reporter with npm (locally or globally is fine):

npm install -g pa11y pa11y-reporter-junit

Run Pa11y using the JUnit reporter:

pa11y --reporter junit http://example.com

JavaScript

Assuming you've installed both Pa11y and Pa11y JUnit Reporter:

const junit = require('pa11y-reporter-junit');
const pa11y = require('pa11y');

pa11y('http://example.com').then(results => {
    // Returns a string with the results formatted as JUnit XML
    const junitResults = junit.results(results);
    console.log(junitResults);
});

Contributing

There are many ways to contribute to Pa11y JUnit Reporter, we cover these in the contributing guide for this repo.

If you're ready to contribute some code, clone this repo locally and commit your code on a new branch.

Please write unit tests for your code, and check that everything works by running the following before opening a PR:

make ci

You can also run verifications and tests individually:

make verify              # Verify all of the code (ESLint)
make test                # Run all tests
make test-unit           # Run the unit tests
make test-unit-coverage  # Run the unit tests with coverage

License

Pa11y JUnit Reporter is licensed under the Lesser General Public License (LGPL-3.0).
Copyright © 2019, Maciej Lewkowicz