Apply test run status to progress donut chart

This commit is contained in:
Takeshi Kimata
2024-04-28 12:26:03 +09:00
parent 88a8c6a50b
commit 7af70399a1
5 changed files with 102 additions and 74 deletions

View File

@@ -19,6 +19,11 @@ type RunCaseType = {
type RunCaseInfoType = {
runId: number;
caseId: number;
}
};
export { RunType, RunCaseType, RunCaseInfoType };
type RunStatusCountType = {
status: number;
count: number;
};
export { RunType, RunCaseType, RunCaseInfoType, RunStatusCountType };