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.
1 parent 1d3dc69 commit c7e8a37Copy full SHA for c7e8a37
GDVM.Tests/Progress/SpectreProgressHandlerTests.cs
@@ -16,6 +16,16 @@ public SpectreProgressHandlerTests()
16
};
17
18
_testConsole.EmitAnsiSequences();
19
+
20
+ // NOTE: Without this, some tests fail in isolation?
21
+ // TODO: Investigate further
22
+ var handler = new SpectreProgressHandler<InstallationStage>(_testConsole);
23
+ handler.TrackProgressAsync(async p =>
24
+ {
25
+ p.Report(new OperationProgress<InstallationStage>(InstallationStage.Initializing, "Init"));
26
+ await Task.Delay(1);
27
+ return 0;
28
+ }).Wait();
29
}
30
31
[Fact]
0 commit comments