-
Notifications
You must be signed in to change notification settings - Fork 0
/
gondola.json
64 lines (64 loc) · 1.56 KB
/
gondola.json
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
59
60
61
62
63
64
{
"tests": "./built/**/*_test.js",
"timeout": 10000,
"output": "./results",
"helpers": {
"WebDriver": {
"url": "https://images.google.com/",
"browser": "chrome",
"restart": true,
"keepBrowserState": false,
"keepCookies": false,
"waitForTimeout": 30000,
"smartWait": 10000,
"timeouts": {
"script": 60000,
"pageLoad": 10000
},
"desiredCapabilities": {
"chromeOptions": {
"args": [
"--disable-gpu",
"--no-sandbox",
"--lang=en"
]
}
}
},
"Mochawesome": {
"uniqueScreenshotNames": "true"
}
},
"include": {},
"bootstrap": false,
"plugins": {
"screenshotOnFail": {
"enabled": true
},
"wdio": {
"services": [
"selenium-standalone"
],
"enabled": true
}
},
"multiple": {
"parallel": {
"browsers": [
"chrome",
"firefox"
]
}
},
"mocha": {
"reporterOptions": {
"reportDir": "results",
"inlineAssets": true,
"timestamp": "isoDateTime",
"reportFilename": "gondola",
"autoOpen": true,
"reportPageTitle": "Gondola Test Result"
}
},
"name": "ts_example"
}