WebdriverIO HTML reporter
npm install wdio-html-reporter```
npm install --save wdio-html-reporter
In your wdio.conf.js:
`js``
{
reporters: ['html'],
reporterOptions: {
html: {
outFile: '/path/to/file.html'
}
}
}