-
Progress
+
+
+
Progress
+
+
+
+
+
);
diff --git a/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx b/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx
index d8ee889..bd093dd 100644
--- a/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx
+++ b/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx
@@ -21,6 +21,7 @@ import {
CopyMinus,
Circle,
CircleCheck,
+ CircleDashed,
CircleX,
CircleSlash2,
} from "lucide-react";
@@ -75,6 +76,8 @@ export default function TestCaseSelector({
return
;
} else if (uid === "passed") {
return
;
+ } else if (uid === "retest") {
+ return
;
} else if (uid === "failed") {
return
;
} else if (uid === "skipped") {
diff --git a/frontend/config/selection.ts b/frontend/config/selection.ts
index 0aac229..7fe633e 100644
--- a/frontend/config/selection.ts
+++ b/frontend/config/selection.ts
@@ -45,6 +45,7 @@ const testRunStatus = [
const testRunCaseStatus = [
{ name: "Untested", uid: "untested", color: "primary" },
{ name: "Passed", uid: "passed", color: "success" },
+ { name: "Retest", uid: "retest", color: "warning" },
{ name: "Failed", uid: "failed", color: "danger" },
{ name: "Skipped", uid: "skipped", color: "primary" },
];