Releases: lpelypenko/axe-html-reporter
Releases · lpelypenko/axe-html-reporter
2.0.0 Full AxeResults object and Rules in report
New release contains major change that affects createHtmlReport
function signature.
createHtmlReport
now accepts fullAxeResult
object inresults
parameter- all other options moved to
options
parameter that is optional - axeResult rules object is now included in HTML report
Published missing dist files
1.2.1 Added support of customSummary, updated tests and docs
Added custom summary support (optional)
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
- Added inapplicable axe result support
- Improved logic
- Added more tests