@@ -13,7 +13,8 @@ module.exports = (config) => {
13
13
require ( 'karma-chrome-launcher' ) ,
14
14
require ( 'karma-firefox-launcher' ) ,
15
15
require ( 'karma-sourcemap-loader' ) ,
16
- require ( 'karma-coverage' )
16
+ require ( 'karma-coverage' ) ,
17
+ require ( 'karma-spec-reporter' )
17
18
] ,
18
19
files : [
19
20
{ pattern : 'node_modules/core-js/client/core.js' , included : true , watched : false } ,
@@ -49,7 +50,7 @@ module.exports = (config) => {
49
50
'dist/packages/**/*.js' : [ 'sourcemap' ]
50
51
} ,
51
52
52
- reporters : [ 'dots ' ] ,
53
+ reporters : [ 'spec ' ] ,
53
54
autoWatch : false ,
54
55
55
56
coverageReporter : {
@@ -58,6 +59,12 @@ module.exports = (config) => {
58
59
subdir : '.'
59
60
} ,
60
61
62
+ specReporter : {
63
+ maxLogLines : 1 ,
64
+ suppressSkipped : true ,
65
+ showSpecTiming : true ,
66
+ } ,
67
+
61
68
sauceLabs : {
62
69
testName : 'material2' ,
63
70
startConnect : false ,
@@ -72,14 +79,15 @@ module.exports = (config) => {
72
79
project : 'material2' ,
73
80
startTunnel : false ,
74
81
retryLimit : 1 ,
75
- timeout : 600 ,
82
+ timeout : 1800 ,
76
83
pollingTimeout : 20000 ,
77
84
video : false ,
78
85
} ,
79
86
80
- browserDisconnectTimeout : 20000 ,
81
- browserNoActivityTimeout : 240000 ,
82
- captureTimeout : 120000 ,
87
+ browserDisconnectTimeout : 180000 ,
88
+ browserDisconnectTolerance : 3 ,
89
+ browserNoActivityTimeout : 300000 ,
90
+ captureTimeout : 180000 ,
83
91
browsers : [ 'ChromeHeadlessLocal' ] ,
84
92
85
93
singleRun : false ,
0 commit comments