wdio-allure-reporter
Version:
A WebdriverIO plugin. Report results in Allure format.
25 lines (22 loc) • 602 B
JavaScript
var allureReporter = require('../../../build/reporter')
allureReporter.reporterName = 'allure'
exports.getConfig = function () {
return {
baseUrl: 'http://localhost:54392',
coloredLogs: true,
logLevel: 'silent',
services: ['phantomjs'],
reporters: [allureReporter],
framework: 'mocha',
reporterOptions: {
allure: {
outputDir: '.allure-results'
}
},
sync: false,
screenshotPath: './screenshots',
capabilities: [{
browserName: 'phantomjs'
}]
}
}