Implemented test run editor's test case selection

This commit is contained in:
Takeshi Kimata
2024-04-14 21:30:06 +09:00
parent 81b1440cf5
commit fa69592899
5 changed files with 27 additions and 48 deletions

View File

@@ -42,11 +42,12 @@ const testRunStatus = [
{ name: "Closed", uid: "closed" },
]
const testResult = [
const testRunCaseStatus = [
{ name: "Not included", uid: "notincluded", color: "primary" },
{ name: "Untested", uid: "untested", color: "primary" },
{ name: "Passed", uid: "passed", color: "success" },
{ name: "Failed", uid: "untested", color: "danger" },
{ name: "Skipped", uid: "medium", color: "primary" },
]
export { priorities, testTypes, automationStatus, templates, testRunStatus, testResult };
export { priorities, testTypes, automationStatus, templates, testRunStatus, testRunCaseStatus };