nightwatch-axe-verbose
Version:
For adding custom commands to allow you to run axe accessibility tests in your NightwatchJS test cases.
18 lines (14 loc) • 337 B
JavaScript
/* eslint-disable */
module.exports = function(selector, options, done) {
var axe = window.axe;
if (!axe) {
done(new Error('aXe not found. Make sure it has been injected'))
return;
}
axe.run(selector, options, function(err, results) {
if (err) {
done(err);
}
done(results);
});
};