Implemented test run editor's test case selection

This commit is contained in:
Takeshi Kimata
2024-04-14 21:30:06 +09:00
parent 81b1440cf5
commit fa69592899
5 changed files with 27 additions and 48 deletions

View File

@@ -10,8 +10,10 @@ type CaseType = {
preConditions: string;
expectedResults: string;
folderId: number;
Steps: StepType[];
Attachments: AttachmentType[];
Steps: StepType[]; // additional property
Attachments: AttachmentType[]; // additional property
isIncluded: boolean; // additional property
runStatus: number; // additional property
};
type CaseStepType = {