Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
correct axe name
Browse files Browse the repository at this point in the history
  • Loading branch information
straker committed Feb 20, 2020
1 parent 693285d commit 82090ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ function checkAndReport(node: Node, timeout: number): Promise<void> {
});

if (results.violations.length) {
console.group('%cNew aXe issues', serious);
console.group('%cNew axe issues', serious);
results.violations.forEach(result => {
let fmt: string;
switch (result.impact) {
Expand Down Expand Up @@ -260,7 +260,7 @@ function checkNode(component: React.Component): void {
try {
node = ReactDOM.findDOMNode(component);
} catch (e) {
console.group('%caXe error: could not check node', critical);
console.group('%caxe error: could not check node', critical);
console.group('%cComponent', serious);
console.error(component);
console.groupEnd();
Expand Down

0 comments on commit 82090ea

Please sign in to comment.