include RunCases on testCase property
This commit is contained in:
@@ -11,9 +11,8 @@ type CaseType = {
|
||||
expectedResults: string;
|
||||
folderId: number;
|
||||
Steps?: StepType[];
|
||||
RunCases?: RunCaseType[];
|
||||
Attachments?: AttachmentType[];
|
||||
isIncluded?: boolean;
|
||||
runStatus?: number;
|
||||
};
|
||||
|
||||
type CaseStepType = {
|
||||
@@ -35,6 +34,12 @@ type StepType = {
|
||||
editState: 'notChanged' | 'changed' | 'new' | 'deleted';
|
||||
};
|
||||
|
||||
type RunCaseType = {
|
||||
runId: number;
|
||||
status: number;
|
||||
editState: 'notChanged' | 'changed' | 'new' | 'deleted';
|
||||
};
|
||||
|
||||
type CaseAttachmentType = {
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
|
||||
Reference in New Issue
Block a user