Skip to content

Commit

Permalink
fix: adds http-get + https-get to protocol type def (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackCA authored Jan 4, 2021
1 parent 628e6ed commit 3d67343
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export interface JestProcessManagerOptions {
* }
* ```
*/
protocol?: 'https' | 'http' | 'tcp' | 'socket';
protocol?: 'https' | 'https-get' | 'http' | 'http-get' | 'tcp' | 'socket';
/**
* Port to wait for activity on before considering the server running. If not provided, the server is assumed to immediately be running.
* @default null
Expand Down Expand Up @@ -136,4 +136,3 @@ export declare function teardown(): Promise<void>;
export declare const ERROR_TIMEOUT = "ERROR_TIMEOUT";
export declare const ERROR_PORT_USED = "ERROR_PORT_USED";
export declare const ERROR_NO_COMMAND = "ERROR_NO_COMMAND";

0 comments on commit 3d67343

Please sign in to comment.