Run CleanUp when when skipping a SelfTest step

This commit is contained in:
nebel 2024-07-21 00:59:08 +09:00
parent 7d2ac511db
commit 45e765eb5c
No known key found for this signature in database

View file

@ -83,6 +83,7 @@ internal class SelfTestWindow : Window
if (ImGuiComponents.IconButton(FontAwesomeIcon.StepForward))
{
this.stepResults.Add((SelfTestStepResult.NotRan, null));
this.steps[this.currentStep].CleanUp();
this.currentStep++;
this.lastTestStart = DateTimeOffset.Now;