importQUnitfrom'qunit';
import { printResults } from'./logger.ts';
/**
* Sets up the console logger to print axe results to the console when the test suite is done.
*/exportfunctionsetupConsoleLogger() {
QUnit.done(function () {
printResults();
});
}