Implemented test run editor's bulk test case selection

This commit is contained in:
Takeshi Kimata
2024-04-21 12:28:30 +09:00
parent 41133f8270
commit d6cba787e2
7 changed files with 197 additions and 11 deletions

View File

@@ -16,4 +16,9 @@ type RunCaseType = {
status: number;
};
export { RunType, RunCaseType };
type RunCaseInfoType = {
runId: number;
caseId: number;
}
export { RunType, RunCaseType, RunCaseInfoType };