Commit aa364a08 authored by Devon Carew's avatar Devon Carew Committed by GitHub

don't rewrite the console in non-ansi mode (#4735)

parent 46da9e84
...@@ -163,7 +163,7 @@ class TestCommand extends FlutterCommand { ...@@ -163,7 +163,7 @@ class TestCommand extends FlutterCommand {
testArgs.insert(0, '--'); testArgs.insert(0, '--');
if (!terminal.supportsColor) if (!terminal.supportsColor)
testArgs.insert(0, '--no-color'); testArgs.insertAll(0, <String>['--no-color', '-rexpanded']);
if (argResults['coverage']) if (argResults['coverage'])
testArgs.insert(0, '--concurrency=1'); testArgs.insert(0, '--concurrency=1');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment