-
Notifications
You must be signed in to change notification settings - Fork 0
/
wdio.conf.js
36 lines (36 loc) · 882 Bytes
/
wdio.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
exports.config = {
runner: 'local',
specs: [
'./test/specs/**.*'
],
maxInstances: 10,
capabilities: [{
maxInstances: 5,
browserName: 'chrome',
acceptInsecureCerts: true,
'goog:chromeOptions': {
args: [
'--incognito',
'--disable-infobars',
"--window-size=1920,1080",
'--disable-notifications',
"--disable-web-security",
"--no-sandbox",
"--whitelisted-ips"
]
}
}],
logLevel: 'silent',
bail: 0,
baseUrl: 'http://localhost',
waitforTimeout: 10000,
connectionRetryTimeout: 120000,
connectionRetryCount: 3,
services: ['chromedriver'],
framework: 'mocha',
reporters: ['spec'],
mochaOpts: {
ui: 'bdd',
timeout: 60000
},
}