adding missing

This commit is contained in:
2025-12-13 22:53:29 +01:00
parent c7ad5622a4
commit 4f2cdbc458

View File

@@ -51,6 +51,7 @@ enum TestStatus {
Pass, Pass,
Fail, Fail,
Skip, Skip,
Missing,
Flake, Flake,
Crash, Crash,
} }
@@ -61,6 +62,7 @@ impl TestStatus {
TestStatus::Pass => "", TestStatus::Pass => "",
TestStatus::Fail => "", TestStatus::Fail => "",
TestStatus::Skip => "", TestStatus::Skip => "",
TestStatus::Missing => "🚫",
TestStatus::Flake => "⚠️", TestStatus::Flake => "⚠️",
TestStatus::Crash => "💥", TestStatus::Crash => "💥",
} }
@@ -71,6 +73,7 @@ impl TestStatus {
TestStatus::Pass => "#22c55e", TestStatus::Pass => "#22c55e",
TestStatus::Fail => "#ff6467", TestStatus::Fail => "#ff6467",
TestStatus::Skip => "#ffdf20", TestStatus::Skip => "#ffdf20",
TestStatus::Missing => "#F77600",
TestStatus::Flake => "#38bdf8", TestStatus::Flake => "#38bdf8",
TestStatus::Crash => "#e7000b", TestStatus::Crash => "#e7000b",
} }