-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up aXe audits #6169
Comments
sgtm, though I'm a bit surprised by a few of these. All of the ones mentioned in the right column never return an axe result? |
Ah, I bet that those 4 were actually 'passing', but we set |
fixed by #6180 |
The axe gatherer is now frequently one of the slowest parts of our run. A few of their checks are particularly slow, including
color-contrast
andtd-has-header
Due to the response on thetd-has-header
item, I started looking into disabling the td-has-headers check for now. But this turned out to be more amusing... Follow along. 👇I figured I'd disable it in the axeConfig and then remove the audit file.
However, there's no audit js file. :)
Yes, that means we've been incurring the cost of this check and not even showing the results. 😭
Apparently that audit file was removed partway through the PR that added most axe audits.
I compared what audit files we have vs the results that aXe currently returns and found a few cases where we're doing unnecessary work:
No LH audit file for existing aXe result
My preferred action is to disable the above to start. We can add them back in as necessary. OK with you, @robdodson?
The text was updated successfully, but these errors were encountered: