Skip to content

Commit

Permalink
only enable emoji for osx - closes #405 (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian McKenzie authored Sep 22, 2016
1 parent 36e14e5 commit 9f58576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if (commander.json) {
Reporter = JSONReporter;
}
let reporter = new Reporter({
emoji: true,
emoji: process.stdout.isTTY && process.platform === 'darwin',

This comment has been minimized.

Copy link
@DRSDavidSoft

DRSDavidSoft Feb 26, 2019

Contributor

Please revert this or at least remove the process.platform === 'darwin' part.

});
reporter.initPeakMemoryCounter();

Expand Down

0 comments on commit 9f58576

Please sign in to comment.