@@ -25,29 +25,28 @@ function Dot(runner) {
2525 var self = this
2626 , stats = this . stats
2727 , width = Base . window . width * .75 | 0
28- , c = '․'
2928 , n = 0 ;
3029
3130 runner . on ( 'start' , function ( ) {
3231 process . stdout . write ( '\n ' ) ;
3332 } ) ;
3433
3534 runner . on ( 'pending' , function ( test ) {
36- process . stdout . write ( color ( 'pending' , c ) ) ;
35+ process . stdout . write ( color ( 'pending' , Base . symbols . dot ) ) ;
3736 } ) ;
3837
3938 runner . on ( 'pass' , function ( test ) {
4039 if ( ++ n % width == 0 ) process . stdout . write ( '\n ' ) ;
4140 if ( 'slow' == test . speed ) {
42- process . stdout . write ( color ( 'bright yellow' , c ) ) ;
41+ process . stdout . write ( color ( 'bright yellow' , Base . symbols . dot ) ) ;
4342 } else {
44- process . stdout . write ( color ( test . speed , c ) ) ;
43+ process . stdout . write ( color ( test . speed , Base . symbols . dot ) ) ;
4544 }
4645 } ) ;
4746
4847 runner . on ( 'fail' , function ( test , err ) {
4948 if ( ++ n % width == 0 ) process . stdout . write ( '\n ' ) ;
50- process . stdout . write ( color ( 'fail' , c ) ) ;
49+ process . stdout . write ( color ( 'fail' , Base . symbols . dot ) ) ;
5150 } ) ;
5251
5352 runner . on ( 'end' , function ( ) {
0 commit comments