@@ -56,7 +56,21 @@ module.exports = function(config) {
56
56
// customLaunchers.SL_Safari7 = createCustomLauncher('safari', 7);
57
57
// customLaunchers.SL_Safari8 = createCustomLauncher('safari', 8);
58
58
59
- customLaunchers . SL_Safari9 = createCustomLauncher ( 'safari' , 9 ) ;
59
+ customLaunchers . SL_Safari9 = createCustomLauncher (
60
+ "safari" ,
61
+ 9.0 ,
62
+ "OS X 10.11"
63
+ ) ;
64
+ customLaunchers . SL_Safari10 = createCustomLauncher (
65
+ "safari" ,
66
+ "10.1" ,
67
+ "macOS 10.12"
68
+ ) ;
69
+ customLaunchers . SL_Safari11 = createCustomLauncher (
70
+ "safari" ,
71
+ "11.1" ,
72
+ "macOS 10.13"
73
+ ) ;
60
74
}
61
75
62
76
// Opera
@@ -138,7 +152,9 @@ module.exports = function(config) {
138
152
// test results reporter to use
139
153
// possible values: 'dots', 'progress'
140
154
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
141
- reporters : [ 'dots' , 'coverage' , 'saucelabs' ] ,
155
+ // Disable code coverage, as it's breaking CI:
156
+ // reporters: ['dots', 'coverage', 'saucelabs'],
157
+ reporters : [ 'dots' , 'saucelabs' ] ,
142
158
143
159
144
160
// web server port
@@ -178,15 +194,16 @@ module.exports = function(config) {
178
194
webpack : {
179
195
cache : true ,
180
196
devtool : 'inline-source-map' ,
181
- module : {
182
- postLoaders : [
183
- {
184
- test : / \. j s $ / ,
185
- exclude : / ( n o d e _ m o d u l e s | t e s t ) / ,
186
- loader : 'istanbul-instrumenter'
187
- }
188
- ]
189
- } ,
197
+ // Disable code coverage, as it's breaking CI
198
+ // module: {
199
+ // postLoaders: [
200
+ // {
201
+ // test: /\.js$/,
202
+ // exclude: /(node_modules|test)/,
203
+ // loader: 'istanbul-instrumenter'
204
+ // }
205
+ // ]
206
+ // },
190
207
externals : [
191
208
{
192
209
'./adapters/http' : 'var undefined'
0 commit comments