Set test run status icon

This commit is contained in:
Takeshi Kimata
2024-04-21 19:26:40 +09:00
parent 8f4ca3d882
commit 99923eea9d
4 changed files with 51 additions and 15 deletions

View File

@@ -40,13 +40,20 @@ const testRunStatus = [
{ name: "Rejected", uid: "rejected" },
{ name: "Done", uid: "done" },
{ name: "Closed", uid: "closed" },
]
];
const testRunCaseStatus = [
{ name: "Untested", uid: "untested", color: "primary" },
{ name: "Passed", uid: "passed", color: "success" },
{ name: "Failed", uid: "untested", color: "danger" },
{ name: "Skipped", uid: "medium", color: "primary" },
]
{ name: "Failed", uid: "failed", color: "danger" },
{ name: "Skipped", uid: "skipped", color: "primary" },
];
export { priorities, testTypes, automationStatus, templates, testRunStatus, testRunCaseStatus };
export {
priorities,
testTypes,
automationStatus,
templates,
testRunStatus,
testRunCaseStatus,
};