Skip to content

Commit

Permalink
Updated INewTestRun type to allow optional fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Clayton Astrom committed Jun 16, 2020
1 parent edb3041 commit 4b4665c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.d.ts
Expand Up @@ -317,11 +317,11 @@ declare namespace TestrailApiClient {
}

interface INewTestRun {
suite_id: number;
name: string;
description: string;
milestone_id: number;
assignedto_id: number;
suite_id?: number;
name?: string;
description?: string;
milestone_id?: number;
assignedto_id?: number;
include_all: boolean;
case_ids: number[];
}
Expand Down

0 comments on commit 4b4665c

Please sign in to comment.