'wdio-video-reporter - ERROR @wdio/runner: Error: Some reporters are still unsynced: Video

  1. I added const video = require('wdio-video-reporter'); to wdio.conf.js
  2. 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

error log



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source