protractor-axe-html-report-plugin
Version:
A protractor plugin that generates an HTML aXe accessibility report
18 lines (16 loc) • 384 B
JavaScript
var env = require('./environment.js');
exports.config = {
seleniumAddress: env.seleniumAddress,
framework: 'jasmine',
specs: ['fail_spec.js'],
baseUrl: env.baseUrl,
plugins: [{
path: '../index.js',
htmlReportPath: 'reports',
displayHelpUrl: true,
displayContext: true,
displayPasses: true,
displayViolations: true,
standardsToReport: []
}]
};