61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
const priorities = [
|
|
{ name: "Critical", uid: "critical", color: "#d00002" },
|
|
{ name: "High", uid: "high", color: "#ee6b4e" },
|
|
{ name: "Medium", uid: "medium", color: "#fccb69" },
|
|
{ name: "Low", uid: "low", color: "#0b62e8" },
|
|
];
|
|
|
|
const testTypes = [
|
|
{ name: "Other", uid: "other" },
|
|
{ name: "Security", uid: "security" },
|
|
{ name: "Performance", uid: "performance" },
|
|
{ name: "Accessibility", uid: "accessibility" },
|
|
{ name: "Functional", uid: "functional" },
|
|
{ name: "Acceptance", uid: "acceptance" },
|
|
{ name: "Usability", uid: "usability" },
|
|
{ name: "Smoke&Sanity", uid: "smoke-sanity" },
|
|
{ name: "Compatibility", uid: "compatibility" },
|
|
{ name: "Destructive", uid: "destructive" },
|
|
{ name: "Regression", uid: "regression" },
|
|
{ name: "Automated", uid: "automated" },
|
|
{ name: "Manual", uid: "manual" },
|
|
];
|
|
|
|
const automationStatus = [
|
|
{ name: "Automated", uid: "automated" },
|
|
{ name: "Automation Not Required", uid: "automation-not-required" },
|
|
{ name: "Cannot Be Automated", uid: "cannot-be-automated" },
|
|
{ name: "Obsolete", uid: "obsolete" },
|
|
];
|
|
|
|
const templates = [
|
|
{ name: "Text", uid: "text-template" },
|
|
{ name: "Step", uid: "step-template" },
|
|
];
|
|
|
|
const testRunStatus = [
|
|
{ name: "New", uid: "new" },
|
|
{ name: "In progress", uid: "in-progress" },
|
|
{ name: "Under review", uid: "under-review" },
|
|
{ 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: "Retest", uid: "retest", color: "warning" },
|
|
{ name: "Failed", uid: "failed", color: "danger" },
|
|
{ name: "Skipped", uid: "skipped", color: "primary" },
|
|
];
|
|
|
|
export {
|
|
priorities,
|
|
testTypes,
|
|
automationStatus,
|
|
templates,
|
|
testRunStatus,
|
|
testRunCaseStatus,
|
|
};
|