Skip to content

Releases: lpelypenko/axe-result-pretty-print

Improved output in case if no violations found

27 Oct 03:27
Compare
Choose a tag to compare

Fix the use case of no output in case of no violations were found.
Old behavior:

        prettyPrintAxeReport({
            violations: [],
            url: 'www.example.com',
        });

no output
New behavior:

        prettyPrintAxeReport({
            violations: [],
            url: 'www.example.com',
        });

Outputs:
No accessibility violations were detected for the www.example.com

1.0.0

21 Oct 07:12
Compare
Choose a tag to compare