When using topfunky's RStakeout, the color in the result of the spec
command is lost. This happens even when adding the --color
flag.
views:
417answers:
2
+1
A:
You have to set the environment variable AUTOTEST
to true. Spec detects whether it is being run by a process and disables color if it is (to make the output easier to parse).
To set the environment variable in bash:
export AUTOTEST=true
or in fish:
set -x AUTOTEST true
(the -x exports the variable)
Chris Lloyd
2008-11-21 03:53:49