Index: pkg/unittest/lib/vm_config.dart |
diff --git a/pkg/unittest/lib/vm_config.dart b/pkg/unittest/lib/vm_config.dart |
index 962ca9753b05fe47fc49d2961347a939e4843f0f..201305e5255ac98acaee113818682c6d45f38546 100644 |
--- a/pkg/unittest/lib/vm_config.dart |
+++ b/pkg/unittest/lib/vm_config.dart |
@@ -21,8 +21,11 @@ class VMConfiguration extends SimpleConfiguration { |
// We make this public so the user can turn it off if they want. |
bool useColor; |
- VMConfiguration() : |
- super(), useColor = stdioType(stdout) == StdioType.TERMINAL; |
+ VMConfiguration() |
+ : super(), |
+ // TODO(nweiz): re-enable this when issue 13712 is fixed. |
Emily Fortuna
2013/10/01 00:52:39
Nit: comments should start with a capital letter.
nweiz
2013/10/01 00:53:40
Done.
|
+ // useColor = stdioType(stdout) == StdioType.TERMINAL; |
+ useColor = false; |
String formatResult(TestCase testCase) { |
String result = super.formatResult(testCase); |