Skip to content

Commit

Permalink
feat: making subResults mandatory in SpecResult
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun0157 committed Jun 2, 2024
1 parent 65fb82f commit 5904769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export interface TestResult {
export interface SpecResult {
spec: string;
results: TestResult[];
subResults?: SpecResult[];
subResults: SpecResult[];
}

export type GotRequest = CancelableRequest<Response<string>>;

0 comments on commit 5904769

Please sign in to comment.