forked from webdriverio/appium-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wdio.ios.app.conf.js
32 lines (29 loc) · 918 Bytes
/
wdio.ios.app.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const path = require('path');
const config = require('./wdio.shared.conf').config;
// ============
// Specs
// ============
config.specs = [
'./tests/specs/**/app*.spec.js'
];
// ============
// Capabilities
// ============
// For all capabilities please check
// http://appium.io/docs/en/writing-running-appium/caps/#general-capabilities
config.capabilities = [
{
// The defaults you need to have in your config
deviceName: 'iPhone 6',
platformName: 'iOS',
platformVersion: '11.1',
orientation: 'PORTRAIT',
// The path to the app
app: path.join(process.cwd(), './apps/iOS-NativeDemoApp-0.2.0.zip'),
// Read the reset strategies very well, they differ per platform, see
// http://appium.io/docs/en/writing-running-appium/other/reset-strategies/
noReset: true,
newCommandTimeout: 240,
},
];
exports.config = config;