Created
March 5, 2021 05:04
-
-
Save eduardopc/8ac2566b526052dfd289fdabbba9c9fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { join } = require('path'); | |
const { config } = require('./wdio.conf'); | |
config.cucumberOpts.require = ['./e2e/tests/steps/**/*.steps.js']; | |
config.capabilities = [ | |
{ | |
platformName: 'Android', | |
maxInstances: 1, | |
'appium:deviceName': 'emulator-5554', | |
'appium:orientation': 'PORTRAIT', | |
'appium:automationName': 'UiAutomator2', | |
'appium:app': join(process.cwd(), './e2e/apps/webdriverio.apk'), | |
excludeDriverLogs: ['*'], | |
'appium:noReset': false, | |
'appium:fullReset': true, | |
'appium:dontStopAppOnReset': true, | |
'appium:autoGrantPermissions': true, | |
'appium:newCommandTimeout': 60, | |
}, | |
]; | |
exports.config = config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment