diff --git a/appium/config/wdio.shared.conf.js b/appium/config/wdio.shared.conf.js index e7c51621a..644cf1408 100644 --- a/appium/config/wdio.shared.conf.js +++ b/appium/config/wdio.shared.conf.js @@ -1,5 +1,4 @@ const { join } = require('path'); -const video = require('wdio-video-reporter'); exports.config = { @@ -17,13 +16,11 @@ exports.config = { connectionRetryTimeout: 90000, connectionRetryCount: 3, maxInstancesPerCapability: 1, - reporters: [ - 'spec', - [video, { - saveAllVideos: false, // If true, also saves videos for successful test cases - videoSlowdownMultiplier: 3, // Higher to get slower videos, lower for faster videos [Value 1-100] - videoRenderTimeout: 10, // Max seconds to wait for a video to finish rendering + reporters: ['spec', + ['allure', { outputDir: './tmp', + disableWebdriverStepsReporting: true, + disableWebdriverScreenshotsReporting: false, }] ], services: [ diff --git a/appium/package.json b/appium/package.json index fd699df45..7a9a52289 100644 --- a/appium/package.json +++ b/appium/package.json @@ -50,7 +50,6 @@ "request": "^2.88.2", "ts-node": "^10.4.0", "typescript": "^4.4.4", - "wdio-video-reporter": "^3.1.3", "webdriverio": "7.16.4" } } diff --git a/appium/tests/specs/login/GmailLogin.spec.ts b/appium/tests/specs/login/GmailLogin.spec.ts index c025ead33..d5d2987a6 100644 --- a/appium/tests/specs/login/GmailLogin.spec.ts +++ b/appium/tests/specs/login/GmailLogin.spec.ts @@ -27,6 +27,7 @@ describe('LOGIN: ', () => { await MenuBarScreen.clickLogout(); await SplashScreen.checkLoginPage(); + }); }); });