File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ const describeCases = config => {
165165 it (
166166 testName + " should compile" ,
167167 done => {
168- process . stdout . write ( `START ${ category . name } ${ testName } \n` ) ;
168+ process . stdout . write ( `START ${ config . name } ${ category . name } ${ testName } \n` ) ;
169169 const exportedTests = [ ] ;
170170 webpack ( options , ( err , stats ) => {
171171 if ( err ) done ( err ) ;
@@ -251,10 +251,10 @@ const describeCases = config => {
251251 . getEnv ( )
252252 . execute ( [ asyncSuite . id ] , asyncSuite )
253253 . then ( ( ) => {
254- process . stdout . write ( `SUCC ${ category . name } ${ testName } \n` ) ;
254+ process . stdout . write ( `SUCC ${ config . name } ${ category . name } ${ testName } \n` ) ;
255255 done ( ) ;
256256 } , e => {
257- process . stdout . write ( `FAIL ${ category . name } ${ testName } \n` ) ;
257+ process . stdout . write ( `FAIL ${ config . name } ${ category . name } ${ testName } \n` ) ;
258258 done ( e ) ;
259259 } ) ;
260260 } ) ;
You can’t perform that action at this time.
0 commit comments