Creates an HTML report from Axe results listing violations, passes, incomplete and incompatible results.
npm install axe-reporter-html


Creates an HTML report from Axe results listing violations, passes, incomplete
and incompatible results.
``bash`
npm install axe-reporter-html
`bash`
yarn add axe-reporter-html
This package exports a single function that you can use to create an HTML report
from an AxeResults object.
`javascript
import createHTMLReport from 'axe-reporter-html'
const html = await createHTMLReport(results)
``