Implemented test run editor's test case selection

This commit is contained in:
Takeshi Kimata
2024-04-20 23:26:47 +09:00
parent c5091833d0
commit e8376c07ef
6 changed files with 111 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
export type RunType = {
type RunType = {
id: number;
name: string;
configurations: number;
@@ -7,4 +7,13 @@ export type RunType = {
projectId: number;
createdAt: string;
updatedAt: string;
};
};
type RunCaseType = {
id: number;
runId: number;
caseId: number;
status: number;
};
export { RunType, RunCaseType };