Open redbassett opened 9 years ago
+1 Same shit for me
Sublime 3 build 3082
Pass the --no-color flag:
"run_rspec_command": "rspec --no-color {relative_path}"
Are there still no known resolutions for non-rspec testing? Especially solutions that keep the colours?
I don't use test unit but try this:
"run_ruby_unit_command": "ruby -Itest --no-use-color {relative_path}",
The output should still be in color, at least they are for rspec. There's a language file that syntax highlights the output so no escape codes are needed.
Sadly, no, it doesn't fix it. But thanks for the note on syntax highlighting! I didn't even think about the fact that the colour came from the syntax highlighting rather than the actual test scripts.
Unfortunately, even after disabling all output colouring in Minitest, I am still seeing those characters in the output, however it is down to just a single ESC
and BEL
in the last few lines:
Hi, any solution? Thanks.
use this package: https://github.com/aziz/SublimeANSI
I am running into an issue similar to what some people posted finding in #33. When I run tests, the test output contains a bunch of what I think are colour codes and [ESC] characters instead of the usual progress bar. None of the fixes listed in #33 worked for me, primarily because I am not using rspec.