File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,9 @@ exports.colors = {
80
80
exports . symbols = {
81
81
ok : '✓' ,
82
82
err : '✖' ,
83
- dot : '․'
83
+ dot : '․' ,
84
+ comma : ',' ,
85
+ bang : '!'
84
86
} ;
85
87
86
88
// With node.js on Windows: use symbols available in terminal default fonts
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function Dot(runner) {
33
33
if ( ++ n % width === 0 ) {
34
34
process . stdout . write ( '\n ' ) ;
35
35
}
36
- process . stdout . write ( color ( 'pending' , Base . symbols . dot ) ) ;
36
+ process . stdout . write ( color ( 'pending' , Base . symbols . comma ) ) ;
37
37
} ) ;
38
38
39
39
runner . on ( 'pass' , function ( test ) {
@@ -51,7 +51,7 @@ function Dot(runner) {
51
51
if ( ++ n % width === 0 ) {
52
52
process . stdout . write ( '\n ' ) ;
53
53
}
54
- process . stdout . write ( color ( 'fail' , Base . symbols . dot ) ) ;
54
+ process . stdout . write ( color ( 'fail' , Base . symbols . bang ) ) ;
55
55
} ) ;
56
56
57
57
runner . on ( 'end' , function ( ) {
You can’t perform that action at this time.
0 commit comments