summaryrefslogtreecommitdiff
path: root/cli/lsp/testing/execution.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/lsp/testing/execution.rs')
-rw-r--r--cli/lsp/testing/execution.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/lsp/testing/execution.rs b/cli/lsp/testing/execution.rs
index 78ee6c7f8..3c7921c88 100644
--- a/cli/lsp/testing/execution.rs
+++ b/cli/lsp/testing/execution.rs
@@ -397,6 +397,9 @@ impl TestRun {
);
}
}
+ test::TestEvent::Completed => {
+ reporter.report_completed();
+ }
test::TestEvent::ForceEndReport => {}
test::TestEvent::Sigint => {}
}
@@ -742,6 +745,10 @@ impl LspTestReporter {
}
}
+ fn report_completed(&mut self) {
+ // there is nothing to do on report_completed
+ }
+
fn report_summary(
&mut self,
_summary: &test::TestSummary,