File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ this.vowText = function (event) {
110110 broken : ' ✗ ' ,
111111 errored : ' ✗ ' ,
112112 pending : ' - '
113- } [ event . status ] + stylize ( event . title , ( {
113+ } [ event . status ] + this . stylize ( event . title , ( {
114114 honored : 'green' ,
115115 broken : 'yellow' ,
116116 errored : 'red' ,
@@ -121,10 +121,10 @@ this.vowText = function (event) {
121121 buffer . push ( ' » ' + event . exception ) ;
122122 } else if ( event . status === 'errored' ) {
123123 if ( event . exception . type === 'promise' ) {
124- buffer . push ( ' » ' + stylize ( "An unexpected error was caught: " +
125- stylize ( event . exception . error , 'bold' ) , 'red' ) ) ;
124+ buffer . push ( ' » ' + this . stylize ( "An unexpected error was caught: " +
125+ this . stylize ( event . exception . error , 'bold' ) , 'red' ) ) ;
126126 } else {
127- buffer . push ( ' ' + stylize ( event . exception , 'red' ) ) ;
127+ buffer . push ( ' ' + this . stylize ( event . exception , 'red' ) ) ;
128128 }
129129 }
130130 return buffer . join ( '\n' ) ;
You can’t perform that action at this time.
0 commit comments