-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathlocal.conf.js
More file actions
43 lines (38 loc) · 1.01 KB
/
local.conf.js
File metadata and controls
43 lines (38 loc) · 1.01 KB
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
33
34
35
36
37
38
39
40
41
42
43
exports.config = {
user: process.env.BROWSERSTACK_USERNAME || 'BROWSERSTACK_USERNAME',
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACCESS_KEY',
// Adding browserstackLocal to browserstack-service to initiate local binary
services: [
['browserstack', {
browserstackLocal: true,
app: 'assets/SampleLocalAndroidApp.apk'
}]
],
updateJob: false,
specs: [
'./examples/run-local-test/specs/local_test.js'
],
exclude: [],
capabilities: [{
platformName: "Android",
"appium:platformVersion": "9.0",
"appium:deviceName": 'Google Pixel 3',
'bstack:options' : {
"projectName" : "First Webdriverio Android Project",
"buildName" : "browserstack-build-1",
"debug" : "true"
}
}],
logLevel: 'info',
coloredLogs: true,
screenshotPath: './errorShots/',
baseUrl: '',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
framework: 'mocha',
mochaOpts: {
ui: 'bdd',
timeout: 20000
}
};