-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathfirst.conf.js
More file actions
34 lines (30 loc) · 809 Bytes
/
first.conf.js
File metadata and controls
34 lines (30 loc) · 809 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
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: [{
project: "First Webdriverio Android Project",
build: 'browserstack-build-1',
name: 'first_test',
device: 'Google Pixel 3',
os_version: "9.0",
app: process.env.BROWSERSTACK_APP_ID || 'bs://<hashed app-id>',
'browserstack.debug': true
}],
logLevel: 'info',
coloredLogs: true,
screenshotPath: './errorShots/',
baseUrl: '',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
framework: 'mocha',
mochaOpts: {
ui: 'bdd',
timeout: 20000
}
};