'wdio-video-reporter - ERROR @wdio/runner: Error: Some reporters are still unsynced: Video
- I added
const video = require('wdio-video-reporter');
towdio.conf.js
- I added to wdio.conf.js
capabilities: [
{
...
"appium:deviceType": "phone",
"browserVersion": "73.0-phone-1",
...
},
],
reporters: [
[
'cucumberjs-json',
{
jsonFolder: './results/report/json/',
language: 'en',
},
],
[
video,
{
saveAllVideos: true,
videoSlowdownMultiplier: 1,
outputDir: './results/report/',
maxTestNameCharacters: 100,
},
],
],
But I got this error. What should I do next? Can I add wdio-video-report to wdio-cucumberjs-json-reporter and multiple-cucumber-html-reporter?
Thanks
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|