Skip to content

Commit 3d67343

Browse files
authored
fix: adds http-get + https-get to protocol type def (#30)
1 parent 628e6ed commit 3d67343

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/types.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export interface JestProcessManagerOptions {
6363
* }
6464
* ```
6565
*/
66-
protocol?: 'https' | 'http' | 'tcp' | 'socket';
66+
protocol?: 'https' | 'https-get' | 'http' | 'http-get' | 'tcp' | 'socket';
6767
/**
6868
* Port to wait for activity on before considering the server running. If not provided, the server is assumed to immediately be running.
6969
* @default null
@@ -136,4 +136,3 @@ export declare function teardown(): Promise<void>;
136136
export declare const ERROR_TIMEOUT = "ERROR_TIMEOUT";
137137
export declare const ERROR_PORT_USED = "ERROR_PORT_USED";
138138
export declare const ERROR_NO_COMMAND = "ERROR_NO_COMMAND";
139-

0 commit comments

Comments
 (0)