From 6de19a1014c062ede7a554dd13fbfc29322fbb4f Mon Sep 17 00:00:00 2001 From: Cyrus Najmabadi Date: Mon, 23 Feb 2015 16:16:26 -0800 Subject: [PATCH] Add support for printing colors to the command line when running mocha! --- Jakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile b/Jakefile index ca1ee20a3ce..7ac94edd2c1 100644 --- a/Jakefile +++ b/Jakefile @@ -574,7 +574,7 @@ task("runtests", ["tests", builtLocalDirectory], function() { } colors = process.env.colors || process.env.color - colors = colors ? ' --no-colors ' : '' + colors = colors ? ' --no-colors ' : ' --colors '; tests = tests ? ' -g ' + tests : ''; reporter = process.env.reporter || process.env.r || 'dot'; // timeout normally isn't necessary but Travis-CI has been timing out on compiler baselines occasionally