diff --git a/src/Stryker.Core/Stryker.Core/Reporters/DashboardReporter.cs b/src/Stryker.Core/Stryker.Core/Reporters/DashboardReporter.cs index 7364cafe1..fede4bf6d 100644 --- a/src/Stryker.Core/Stryker.Core/Reporters/DashboardReporter.cs +++ b/src/Stryker.Core/Stryker.Core/Reporters/DashboardReporter.cs @@ -35,13 +35,13 @@ public DashboardReporter(IStrykerOptions options, IDashboardClient dashboardClie public void OnAllMutantsTested(IReadOnlyProjectComponent reportComponent, ITestProjectsInfo testProjectsInfo) { - var mutationReport = JsonReport.Build(_options, reportComponent, testProjectsInfo); - _dashboardClient.PublishReport(mutationReport, _options.ProjectVersion).Wait(); - if (ShouldPublishInRealTime()) { _dashboardClient.PublishFinished().Wait(); } + + var mutationReport = JsonReport.Build(_options, reportComponent, testProjectsInfo); + _dashboardClient.PublishReport(mutationReport, _options.ProjectVersion).Wait(); } private void OpenDashboardReport(string reportUri)