wdio-axe
Version:
Module to inject and analyze web pages in webdriverio using aXe
29 lines (28 loc) • 638 B
JavaScript
exports.config = {
runner: 'local',
specs: [
'./test/specs/**/*.js'
],
maxInstances: 1,
capabilities: [{
maxInstances: 1,
browserName: 'chrome',
acceptInsecureCerts: true,
'goog:chromeOptions': {
args: ['headless', 'disable-gpu']
}
}],
logLevel: 'silent',
bail: 0,
baseUrl: 'http://localhost',
waitforTimeout: 10000,
connectionRetryTimeout: 120000,
connectionRetryCount: 3,
services: ['selenium-standalone'],
framework: 'mocha',
reporters: ['spec'],
mochaOpts: {
ui: 'bdd',
timeout: 60000
}
};