Files
pp-tcms/frontend/types/testRunCaseStatus.ts
2024-07-21 15:30:04 +09:00

19 lines
465 B
TypeScript

// The status of each test case in test run
type TestRunCaseStatusUidType = 'untested' | 'passed' | 'failed' | 'retest' | 'skipped';
type TestRunCaseStatusType = {
uid: TestRunCaseStatusUidType;
color: string;
chartColor: string;
};
type TestRunCaseStatusMessages = {
untested: string;
passed: string;
failed: string;
retest: string;
skipped: string;
};
export type { TestRunCaseStatusUidType, TestRunCaseStatusType, TestRunCaseStatusMessages };