We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb6c91 commit e3707f2Copy full SHA for e3707f2
1 file changed
src/index.js
@@ -13,9 +13,11 @@ class A11yDeveloperToolsRunner {
13
14
getRunnable() {
15
/* global axs:false */
16
- /* eslint-disable no-var */
+ /* eslint-disable no-var, vars-on-top */
17
return function axsRunner() {
18
- var results = axs.Audit.run();
+ var configuration = new axs.AuditConfiguration();
19
+ configuration.showUnsupportedRulesWarning = false;
20
+ var results = axs.Audit.run(configuration);
21
window.callPhantom(null, axs.Audit.auditResults(results));
22
};
23
}
0 commit comments