UNPKG

ember-a11y-testing

Version:
12 lines (10 loc) 266 B
import QUnit from 'qunit'; import { printResults } from './logger'; /** * Sets up the console logger to print axe results to the console when the test suite is done. */ export function setupConsoleLogger() { QUnit.done(function () { printResults(); }); }