-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathfirst.conf.js
More file actions
38 lines (34 loc) · 892 Bytes
/
first.conf.js
File metadata and controls
38 lines (34 loc) · 892 Bytes
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
exports.config = {
user: process.env.BROWSERSTACK_USERNAME || 'BROWSERSTACK_USERNAME',
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACCESS_KEY',
updateJob: false,
specs: [
'./examples/run-first-test/specs/first_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,
services: [['browserstack', {
app: 'assets/SampleAndroidApp.apk'
}]],
framework: 'mocha',
mochaOpts: {
ui: 'bdd',
timeout: 20000
}
};