-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwdio.base-multi.conf.ts
31 lines (31 loc) · 1.12 KB
/
wdio.base-multi.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
// this is basically the example from
// https://webdriver.io/docs/visual-testing/#webdriverio-multiremote
export const _baseConfig: WebdriverIO.MultiremoteConfig = {
capabilities: {
chromeBrowserOne: {
capabilities: {
browserName: "chrome",
"goog:chromeOptions": {
args: ["disable-infobars"],
},
// THIS!!!
// REPORTED https://github.com/webdriverio/visual-testing/issues/732
"wdio-ics:options": { // TS ERROR: Object literal may only specify known properties, and '"wdio-ics:options"' does not exist in type 'RequestedStandaloneCapabilities'.
logName: "chrome-latest-one",
},
},
},
chromeBrowserTwo: {
capabilities: {
browserName: "chrome",
"goog:chromeOptions": {
args: ["disable-infobars"],
},
// THIS!!!
"wdio-ics:options": {
logName: "chrome-latest-two",
},
},
},
},
}