Skip to content

Commit

Permalink
dont colourize test output on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ashb committed Feb 15, 2010
1 parent 27519ad commit 6a7e312
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/test.js
Expand Up @@ -56,7 +56,8 @@ const TAPProducer = function TAPProducer() {
merge(TAPProducer.prototype, {
paddStr: ' ',

colourize: true,
// Dont colourize (by default) on Win32
colourize: "APPDATA" in require('system').env ? false : true,

green: function green() {
var a = Array.slice(arguments);
Expand Down

0 comments on commit 6a7e312

Please sign in to comment.