Skip to content

Commit

Permalink
Refactor: moved more attributes to base class
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsSmets committed Dec 17, 2024
1 parent 36be10b commit d662976
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/app/shared/interfaces/base-report.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
export interface BaseReport {
checked: boolean;
storageId: number;
path: string;
name: string;
description: string;
}
3 changes: 0 additions & 3 deletions src/app/shared/interfaces/report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ export interface Report extends BaseReport {
checkpoints: Checkpoint[];
correlationId: string;
crudStorage: boolean;
description: string;
endTime: number;
estimatedMemoryUsage: number;
fullPath: string;
inputCheckpoint: Checkpoint;
name: string;
numberOfCheckpoints: number;
originalEndpointOrAbortpointForCurrentLevel?: Checkpoint;
originalReport: Report;
path: string;
reportFilterMatching: boolean;
startTime: number;
stub: number;
Expand Down
3 changes: 0 additions & 3 deletions src/app/shared/interfaces/test-list-item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ import { ReranReport } from './reran-report';
import { BaseReport } from './base-report';

export interface TestListItem extends BaseReport {
name: string;
path: string;
fullPath?: string;
description: string;
variables?: string;
extractedVariables?: string;
reranReport?: ReranReport | null;
Expand Down

0 comments on commit d662976

Please sign in to comment.