How to use the ember-a11y-testing/utils/violations-helper.logTip function in ember-a11y-testing

To help you get started, we’ve selected a few ember-a11y-testing examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ember-a11y / ember-a11y-testing / addon / instance-initializers / axe-component.js View on Github external
nodeElem.classList.remove(...VIOLATION_CLASS_NAMES);

                if (visualNoiseLevel > 0) {
                  nodeElem.classList.add(...classNamesToAdd);
                }
              }
            }
          }

          if (this.axeCallback) {
            assert('axeCallback should be a function.', typeof this.axeCallback === 'function');
            this.axeCallback(results);
          }

          scheduleOnce('afterRender', violationsHelper, violationsHelper.logTip);
        });
      }