File tree Expand file tree Collapse file tree 1 file changed +24
-4
lines changed Expand file tree Collapse file tree 1 file changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ const nwConf = {
40
40
name : 'Bstack-[Nightwatch] Vue Router Parallel Test' ,
41
41
'browserstack.local' : true ,
42
42
'browserstack.video' : false ,
43
- acceptSslCerts : true
43
+ acceptSslCerts : true ,
44
+ resolution : '1024x768'
44
45
} ,
45
46
46
47
test_settings : {
@@ -49,7 +50,13 @@ const nwConf = {
49
50
chrome : {
50
51
desiredCapabilities : {
51
52
browser : 'chrome'
52
- // name: 'Bstack-[Nightwatch] Vue Router',
53
+ }
54
+ } ,
55
+
56
+ chromeQt : {
57
+ desiredCapabilities : {
58
+ browser : 'chrome' ,
59
+ browser_version : '49.0'
53
60
}
54
61
} ,
55
62
@@ -61,7 +68,19 @@ const nwConf = {
61
68
62
69
safari : {
63
70
desiredCapabilities : {
64
- browser : 'safari'
71
+ os : 'OS X' ,
72
+ os_version : 'Mojave' ,
73
+ browser : 'Safari' ,
74
+ browser_version : '12.0'
75
+ }
76
+ } ,
77
+
78
+ safari6 : {
79
+ desiredCapabilities : {
80
+ os : 'OS X' ,
81
+ os_version : 'Lion' ,
82
+ browser : 'Safari' ,
83
+ browser_version : '6.0'
65
84
}
66
85
} ,
67
86
@@ -110,7 +129,8 @@ for (const setting in nwConf.test_settings) {
110
129
// merge common_capabilities
111
130
for ( const key in nwConf . common_capabilities ) {
112
131
// fallback to common_capabilities
113
- config [ 'desiredCapabilities' ] [ key ] = config [ 'desiredCapabilities' ] [ key ] || nwConf . common_capabilities [ key ]
132
+ config [ 'desiredCapabilities' ] [ key ] =
133
+ config [ 'desiredCapabilities' ] [ key ] || nwConf . common_capabilities [ key ]
114
134
}
115
135
}
116
136
You can’t perform that action at this time.
0 commit comments