Skip to content

Releases: lpelypenko/axe-html-reporter

2.0.0 Full AxeResults object and Rules in report

29 Oct 07:08
5a69da4
Compare
Choose a tag to compare

New release contains major change that affects createHtmlReport function signature.

  • createHtmlReport now accepts full AxeResult object in results parameter
  • all other options moved to options parameter that is optional
  • axeResult rules object is now included in HTML report

Published missing dist files

22 Oct 10:16
Compare
Choose a tag to compare
1.2.1

Added support of customSummary, updated tests and docs

Added custom summary support (optional)

22 Oct 08:40
Compare
Choose a tag to compare

If use passed customSummary it will appear bellow Page URL:

        const customSummary = `Test Case: Full page analysis
        <br>Steps:</br>
        <ol style="margin: 0">
        <li>Open https://dequeuniversity.com/demo/mars/</li>
        <li>Analyze full page with all rules enabled</li>
        </ol>`;
        createHtmlReport({
            violations: axeRawViolations,
            url: 'https://dequeuniversity.com/demo/mars/',
            customSummary
        });

Added inapplicable axe result support

22 Oct 03:55
Compare
Choose a tag to compare
  • Added inapplicable axe result support
  • Improved logic
  • Added more tests

1.0.0

14 Oct 04:59
Compare
Choose a tag to compare