-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: adding new step to run tests on ci
- Loading branch information
Showing
3 changed files
with
44 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import process from "process"; | ||
import {config as sharedConfig} from "./wdio.appium.config.js"; | ||
|
||
|
||
export const config = { | ||
...sharedConfig, | ||
...{ | ||
capabilities: [ | ||
{ | ||
// The defaults you need to have in your config | ||
platformName: "iOS", | ||
maxInstances: 1, | ||
// For W3C the appium capabilities need to have an extension prefix | ||
// This is `appium:` for all Appium Capabilities which can be found here | ||
// http://appium.io/docs/en/writing-running-appium/caps/ | ||
"appium:deviceName": "iPhone 15 Pro Max", | ||
"appium:platformVersion": "17.0", | ||
"appium:orientation": "PORTRAIT", | ||
"appium:automationName": "XCUITest", | ||
"appium:autoWebview": true, | ||
"appium:noReset": false, | ||
// The path to the app | ||
"appium:app": process.env.APP_PATH, | ||
"appium:newCommandTimeout": 240, | ||
}, | ||
], | ||
}, | ||
}; |