-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.conf.js
58 lines (43 loc) · 1.03 KB
/
mobile.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
exports.config = {
runner: 'local',//
hostname: 'mobile-hub.lambdatest.com',
port: 80,
path: '/wd/hub',
user: process.env.LT_USERNAME,
key: process.env.LT_ACCESS_KEY,
specs: [
'./test/specs/**/*.js'
],
// Patterns to exclude.
exclude: [
// 'path/to/excluded/files'
],
maxInstances: 10,
capabilities: [{
"lt:options": {
"w3c": true,
"platformName": "android",
"deviceName": "Galaxy A12",
"platformVersion": "10",
"isRealMobile": true
}
}],
logLevel: 'info',
bail: 0,
waitforTimeout: 10000,
//
// Default timeout in milliseconds for request
// if browser driver or grid doesn't send response
connectionRetryTimeout: 120000,
//
// Default request retries count
connectionRetryCount: 3,
framework: 'mocha',
reporters: ['spec'],
// Options to be passed to Mocha.
// See the full list at http://mochajs.org/
mochaOpts: {
ui: 'bdd',
timeout: 60000
},
}