File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ const describeCases = config => {
168168 process . stdout . write ( `START ${ config . name } ${ category . name } ${ testName } \n` ) ;
169169 const exportedTests = [ ] ;
170170 webpack ( options , ( err , stats ) => {
171+ process . stdout . write ( `COMP ${ config . name } ${ category . name } ${ testName } \n` ) ;
171172 if ( err ) done ( err ) ;
172173 const statOptions = Stats . presetToOptions ( "verbose" ) ;
173174 statOptions . colors = false ;
@@ -254,9 +255,11 @@ const describeCases = config => {
254255 process . stdout . write ( `SUCC ${ config . name } ${ category . name } ${ testName } \n` ) ;
255256 done ( ) ;
256257 } , e => {
258+ process . stdout . write ( `COMP ${ config . name } ${ category . name } ${ testName } \n` ) ;
257259 process . stdout . write ( `FAIL ${ config . name } ${ category . name } ${ testName } \n` ) ;
258260 done ( e ) ;
259261 } ) ;
262+ process . stdout . write ( `COMP ${ config . name } ${ category . name } ${ testName } \n` ) ;
260263 } ) ;
261264 } ,
262265 60000
You can’t perform that action at this time.
0 commit comments