Index: lib/src/runner/reporter/compact.dart |
diff --git a/lib/src/runner/reporter/compact.dart b/lib/src/runner/reporter/compact.dart |
index 61fe9084741961182d8aba72b15a86cbf0df3a74..8d9916a6e81a71607a5afe6c47ebf42829b48293 100644 |
--- a/lib/src/runner/reporter/compact.dart |
+++ b/lib/src/runner/reporter/compact.dart |
@@ -150,6 +150,11 @@ class CompactReporter implements Reporter { |
_printedNewline = true; |
_stopwatch.stop(); |
+ // Force the next message to be printed, even if it's identical to the |
+ // previous one. If the reporter was paused, text was probably printed |
+ // during the pause. |
+ _lastProgressMessage = null; |
+ |
for (var subscription in _subscriptions) { |
subscription.pause(); |
} |