We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 316356f + fc71602 commit 99271d1Copy full SHA for 99271d1
test/Microsoft.NET.TestFramework/Utilities/TerminalLoggerStringExtensions.cs
@@ -12,6 +12,8 @@ public static string StripTerminalLoggerProgressIndicators(this string stdout)
12
{
13
return stdout
14
.Replace("\x1b]9;4;3;\x1b\\", "") // indeterminate progress start
15
- .Replace("\x1b]9;4;0;\x1b\\", ""); // indeterminate progress end
+ .Replace("\x1b]9;4;0;\x1b\\", "") // indeterminate progress end
16
+ .Replace("\x1b[?25l", "") // make cursor invisble
17
+ .Replace("\x1b[?25h", ""); // make cursor visible
18
}
-}
19
+}
0 commit comments