-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbsiOs.conf.ts
47 lines (43 loc) · 1.06 KB
/
bsiOs.conf.ts
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
require('dotenv').config()
exports.config = {
/*Put your user and key from browserstack*/
user: process.env.BROWSERSTACK_USERNAME || '',
key: process.env.BROWSERSTACK_ACCESS_KEY || '',
hostname: 'hub.browserstack.com',
updateJob: false,
specs: [
'./specs/iOs/**.ts',
],
exclude: [],
services: [
[
'browserstack',
{
app: process.env.IOS_APP_BS,
buildIdentifier: "${BUILD_NUMBER}",
browserstackLocal: true
},
]
],
capabilities: [{
'bstack:options': {
projectName: "FAIMS3",
deviceName: process.env.DEVICE_NAME,
platformVersion: '16.4',
platformName: 'ios',
},
}],
logLevel: 'info',
coloredLogs: true,
screenshotPath: './errorShots/',
baseUrl: '',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
maxInstances: 1,
framework: 'mocha',
mochaOpts: {
ui: 'bdd',
timeout: 120000
}
};