Skip to content

Commit 02c7083

Browse files
committed
Added space after prefix symbol for Windows platform
1 parent 881d19f commit 02c7083

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ var SpecReporter = function(baseReporterDecorator, formatError, config) {
1111
};
1212

1313
if (process && process.platform === 'win32') {
14-
this.prefixes.success = '\u221A';
15-
this.prefixes.failure = '\u00D7';
16-
this.prefixes.skipped = '.';
14+
this.prefixes.success = '\u221A ';
15+
this.prefixes.failure = '\u00D7 ';
16+
this.prefixes.skipped = '- ';
1717
}
1818

1919
this.failures = [];

0 commit comments

Comments
 (0)