WDIO Teamcity Reporter
WebdriverIO Teamcity reporter which makes it possible to display test results in real-time, makes test information available on the Tests tab of the Build Results page.
Installation
| 1
 | npm install wdio-teamcity-reporter --save-dev
 | 
Instructions on how to install WebdriverIO can be found here.
Configuration
Add the reporter to your reporter list in your wdio.conf.js file:
| 12
 3
 4
 5
 
 | exports.config = {
 reporters: ['teamcity'],
 
 }
 
 | 
Links