-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathandroid.conf.ts
More file actions
20 lines (19 loc) · 649 Bytes
/
android.conf.ts
File metadata and controls
20 lines (19 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// @ts-nocheck
import { config as baseConfig } from './wdio.conf.ts';
import { join } from 'node:path';
export const config: WebdriverIO.Config = {
...baseConfig,
capabilities: [
{
// capabilities for local Appium web tests on an Android Emulator
platformName: 'Android',
'appium:automationName': 'FlutterIntegration',
'appium:orientation': 'PORTRAIT',
'appium:app': process.env.APP_PATH,
'appium:newCommandTimeout': 240,
'appium:flutterServerLaunchTimeout': 30000,
'appium:flutterEnableMockCamera': true,
'appium:adbExecTimeout': 80000
},
],
};